-
-
Notifications
You must be signed in to change notification settings - Fork 26.9k
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
Support Jest's --watchAll #3801
Comments
Yes, but in watch mode, after the initial run you can press 'a' to trigger a "watchAll" run. |
Yea, IMO this is enough. |
IMO it's not, but whatever I guess? |
Yes, but what if you don't want to have to wait for Jest to start up and press a key to run all tests? |
Merged a fix in #3804. Will be out in 2.x beta. |
Jest, at least the version that react-scripts depends on, does not work with both the
--watch
and--watchAll
flags.Since react-scripts is automatically adding the
--watch
flag, that means no user would ever be able to do--watchAll
.Either upgrading Jest or fixing this logic would solve the issue.
The text was updated successfully, but these errors were encountered: