-
-
Notifications
You must be signed in to change notification settings - Fork 27k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fails by default when running tests in travis #532
Milestone
Comments
Sounds good, would you like to make a PR? I was planning to suggest that people who need this create |
gaearon
added a commit
that referenced
this issue
Sep 1, 2016
gaearon
added a commit
that referenced
this issue
Sep 1, 2016
stayradiated
pushed a commit
to stayradiated/create-react-app
that referenced
this issue
Sep 7, 2016
feiqitian
pushed a commit
to feiqitian/create-react-app
that referenced
this issue
Oct 25, 2016
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Because we enable watch by default, tests will fail if you enable any CI server.
We can fix this in the majority of popular CI systems by checking for
process.env.CI='true'
(see https://docs.travis-ci.com/user/environment-variables/#Default-Environment-Variables), and then disabling--watch
.The text was updated successfully, but these errors were encountered: