-
-
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
Verbose reporter buffers writes preventing debugging with logs #11299
Comments
To repro put the following in any test:
If only one test file matches jest uses the verbose debugger, which makes sense -- when no output interleaving is needed the buffering and output interleaving code is unneeded. This leads us to the reasonable expectation that |
I observe a similar issue where |
I don't think it is the same issue, no. Could you share what the "overly verbose" output looks like? |
With "overly verbose" I just meant the one-test-per-line output of |
This issue is stale because it has been open for 1 year with no activity. Remove stale label or comment or this will be closed in 30 days. |
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. |
Opening an issue because I don't know how to get any traction on my PR.
Currently you have two choices with jest: you can debug using console logs or you can debug using a debugger. If you are using a debugger though you will not see output from any
console.log
statements that run. This is the kind of bug that I hate most because it makes you feel insane, especially since the behavior is undocumented and my investigation indicates that it seems to be an unintentional regression.Please please someone take notice?
The text was updated successfully, but these errors were encountered: