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
Andrew Wood edited this page Oct 15, 2018
·
2 revisions
Setup package.json
Under scripts, add "test":"jest".
At the top level, add the jest config instructions.
{
"name":"projectname",
"jest":{
"preset": "react-native",
"testEnvironment": "jsdom",
"setupFiles": [
"./__test__/setupTests.js"
],
"verbose": true
},
..}