Created by: mpj
Per default, Jest runs through all tests even if it encounters an error. This might be a sensible default for Jest in general (it's possibly nice in a CI setting) but I find it very annoying when actually developing, because the "PASS" messages obscure the test error in the console (especially if you have a small console window, which you often do when developing):
Failing test in small console window (current behaviour):
The problem is here that the user has to scroll up to see the error. The problem can be postponed by having a larger terminal, but eventually your test suite will will grow so large that it obscured the entire window no matter how big it is.