-
-
Notifications
You must be signed in to change notification settings - Fork 6.5k
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
Interactive mode for all failing tests #7685
Comments
Thanks for the suggestion!
You're in the right place, this repo contains all parts of Jest, including |
I really want this feature to be added. Its one of the things that have been bugging me for well over a year now. If a standard could be agreed on I wouldn't mind putting in the elbow grease to make it happen. Personally, I wouldn't mind interactive mode including failed tests in general (same |
I'm not opposed to this feature being added :) @thymikee @SimenB just in case someone has concerns. I'd agree with using the same
|
This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
🚀 Feature Proposal
Jest's interactive snapshot mode is awesome. Would it be possible to enable a similar feature to interactively run every failing test one-by-one?
Motivation
When changing something that breaks a lot of tests, I have to run all the tests to find the failing tests and try to fix them one-by-one (either fixing test or the code). Then I have to run all the failing tests again to make sure it is now fixed. Another way would be to run tests separated by files or test names (which is also painful). I was wondering whether it is possible to have the interactive mode for non-snapshot tests? To run every failing test one-by-one and proceed to next test when the user decides to or when the test passed.
I think this feature should belong to
jest-cli
but I didn't know where to create an issue for that.The text was updated successfully, but these errors were encountered: