@rockchalkwushock Have you tried putting the config in src/setupTests.js
?
doc: https://github.com/facebookincubator/create-react-app/blob/master/packages/react-scripts/template/README.md#initializing-test-environment
Thanks! Now I understand that --setupTestFrameworkScriptFile
is the CLI flag as well. So thankful for --showConfig
to see the underlying config being applied
this fixed the issue for me in Jest jestjs/jest#4545 (comment)
Cheers, @capaj!
>$ yarn add raf --dev
// package.json
...
"jest": {
"setupFiles": [
"raf/polyfill"
]
},
...
@capaj, Great...
// package.json
...
"setupFiles": [
"raf/polyfill"
]
...
Thanks!.. am using jest
package and now its fixed my console warning
console.error node_modules/fbjs/lib/warning.js:33
Warning: React depends on requestAnimationFrame. Make sure that you load a polyfill in older browsers. http://fb.me/react-polyfills
@capaj, thanks!)
@capaj, Thanks!!!
@capaj, Thanks!
I am using
create-react-app
and trying to implement this but it does not support passingjest.setupFiles
in the package.json. I've been going through thejest
docs but haven't found anything yet on a CLI flag for passing this information toreact-scripts test
. Has anyone figured this out?