Skip to content

Commit

Permalink
Upgrade jest
Browse files Browse the repository at this point in the history
- this avoids the following documented error jestjs/jest#5119
- this also removes `node_modules/.bin` which is automatically added to the path
  • Loading branch information
carpeliam committed Mar 27, 2018
1 parent 4a0c835 commit 845ec83
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"jest": "^22.0.3",
"jest-cli": "^22.0.3",
"jest-expo": "23.0.0",
"jest": "^22.4.3",
"jest-cli": "^22.4.3",
"jest-expo": "25.0.0",
"react-native-scripts": "1.8.1",
"react-scripts": "^1.0.17",
"react-test-renderer": "16.0.0",
Expand All @@ -20,7 +20,7 @@
"android": "react-native-scripts android",
"ios": "react-native-scripts ios",
"eject": "react-native-scripts eject",
"test": "node_modules/.bin/jest --watch",
"test": "jest --watch",
"build:web": "webpack --config webpack.config.web.js",
"deploy": "npm run build:web&&gh-pages -d public"
},
Expand Down

0 comments on commit 845ec83

Please sign in to comment.