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
Steps:
App.js
function* test() { yield ((a) => 42) }
npm run test
npm run test -- --coverage
This syntax is valid js, it works in the browser and with tests without coverage so I expect it to work with coverage activated
This error is thrown:
npm ls react-scripts
test@0.1.0 /Users/gael/Desktop/test └── react-scripts@0.8.1
node -v
v6.4.0
npm -v
3.10.6
I guess this is a Jest issue, so I ping @cpojer ?
The text was updated successfully, but these errors were encountered:
Seems like an issue here: https://github.com/istanbuljs/babel-plugin-istanbul
Sorry, something went wrong.
Could also be the same as #1156 and #1160, and might be fixed by #1179. Can you try to repro this on master?
This doesn't reproduce on master, and likely was fixed by #1179. The next patch will address it.
Fixed in 0.8.2. Please verify.
https://github.com/facebookincubator/create-react-app/releases/tag/v0.8.2
Working like a charm, thanks for the fast patch !
No branches or pull requests
Description
Steps:
App.js
, add the following codenpm run test
=> worksnpm run test -- --coverage
=> crashesExpected behavior
This syntax is valid js, it works in the browser and with tests without coverage so I expect it to work with coverage activated
Actual behavior
This error is thrown:
Environment
npm ls react-scripts
node -v
:npm -v
:I guess this is a Jest issue, so I ping @cpojer ?
The text was updated successfully, but these errors were encountered: