We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Running yarn rw test --coverage --coverageReporters=html --coverageReporters=text results in:
yarn rw test --coverage --coverageReporters=html --coverageReporters=text
Failed to write coverage reports: ERROR: Error: Cannot find module 'html,text'
Looking at the command line, what is actually executed is something like:
jest --coverage true --coverageReporters html,text --passWithNoTests
It looks like the multiple "--coverageReporters" option values are joined into one with a "," separator, which is not supported by jest.
The text was updated successfully, but these errors were encountered:
any update on this?
Sorry, something went wrong.
This will be resolved (hopefully) in #4096
Successfully merging a pull request may close this issue.
Running
yarn rw test --coverage --coverageReporters=html --coverageReporters=text
results in:Looking at the command line, what is actually executed is something like:
It looks like the multiple "--coverageReporters" option values are joined into one with a "," separator, which is not supported by jest.
The text was updated successfully, but these errors were encountered: