You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Ejecting from a fresh CRA project puts "testRunner": "/Users/simen/repos/my-app/node_modules/jest-circus/runner.js" in my Jest config in package.json, which will obviously only work on my machine (barring some weird coincidences)
Describe the bug
Ejecting from a fresh CRA project puts
"testRunner": "/Users/simen/repos/my-app/node_modules/jest-circus/runner.js"
in my Jest config in package.json, which will obviously only work on my machine (barring some weird coincidences)Did you try recovering your dependencies?
N/A
Which terms did you search for in User Guide?
N/A
Environment
Steps to reproduce
npx create-react-app my-app
cd my-app && yarn eject
package.json
Expected behavior
I'd expect it to see
"testRunner": "jest-circus/runner"
inpackage.json
.Actual behavior
I see
"testRunner": "/Users/simen/repos/my-app/node_modules/jest-circus/runner.js"
insteadReproducible demo
N/A
The text was updated successfully, but these errors were encountered: