Skip to content

Commit

Permalink
A bug in CRA makes tests return exit code 0 even on failures. Passing…
Browse files Browse the repository at this point in the history
… CI=1 is a workaround. facebook/create-react-app#7433
  • Loading branch information
ghengeveld committed Jul 26, 2019
1 parent 7c3da2a commit 5d0d78a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"test:forwards": "yarn add -D -W react@next react-dom@next && yarn test",
"test:latest": "yarn add -D -W react@latest react-dom@latest && yarn test",
"test:compat": "yarn test:backwards && yarn test:forwards && yarn test:latest",
"test:examples": "lerna run test -- --passWithNoTests --watchAll=false",
"test:examples": "CI=1 lerna run test -- --passWithNoTests --watchAll=false",
"ci": "yarn lint && yarn test:compat && yarn test:examples",
"build": "lerna run build",
"bump": "lerna version -m 'Bump' --no-git-tag-version --no-push",
Expand Down

0 comments on commit 5d0d78a

Please sign in to comment.