When there are lots of tests it becomes annoying to have to scroll over the ever growing test name list. They're usually printed in this format:
LOG: foo
LOG: bar
demo
✓ should work
✓ should handle deep equality
[...300+ lines of successful tests]
[...300+ lines of successful tests]
[...300+ lines of successful tests]
Executed 306 of 306 SUCCESS (0.102 secs / 0.12 secs)
With this PR we're switching to a more minimal reporter which only prints the test summary:
LOG: foo
LOG: bar
306 passed (199ms)
Executed 306 of 306 SUCCESS (0.102 secs / 0.12 secs)
When there are lots of tests it becomes annoying to have to scroll over the ever growing test name list. They're usually printed in this format:
With this PR we're switching to a more minimal reporter which only prints the test summary: