Make test:watch work again

This commit is contained in:
Tom Coleman 2017-06-07 22:13:02 +10:00
parent 616a46dff3
commit 8691938c58

View File

@ -23,8 +23,10 @@
"lint:js": "eslint . --cache --cache-location=.cache/eslint --ext .js,.jsx,.json",
"lint:md": "remark .",
"publish": "lerna publish",
"test": "jest && npm run test:react-native-vanilla",
"test:watch": "npm test -- --watch",
"test": "npm run test:libs && npm run test:apps",
"test:apps": "npm run test:react-native-vanilla",
"test:libs": "jest",
"test:watch": "npm run test:libs -- --watch",
"test:react-native-vanilla": "cd examples/react-native-vanilla && jest"
},
"devDependencies": {