Skip to content
This repository has been archived by the owner on Dec 30, 2022. It is now read-only.

fix: test recipes #740

Merged
merged 2 commits into from
Dec 19, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"eject": "react-native-scripts eject",
"android": "react-native-scripts android",
"ios": "react-native-scripts ios",
"test": "node node_modules/jest/bin/jest.js --watch"
"test": "jest"
},
"jest": {
"preset": "jest-expo",
Expand Down
4 changes: 2 additions & 2 deletions scripts/test:recipes.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ for d in packages/react-instantsearch/examples/* ; do
yarn
yarn build
if [ "$CI" = "true" ]
then jest --runInBand
else jest
then yarn test --runInBand
else yarn test
fi
cd ../../../..
done