jest-log-failure-reporter
v1.0.0
Published
A reporter for test that only full logs for failures
Downloads
4
Readme
Why
Most other testing frameworks I've used will hide the stdout from successful tests and only print those from failures. It makes the test output alot more readable. This gives jest the same behaviour. Checkout this issue for more context.
Usage:
...
// Use this configuration option to add custom reporters to Jest
reporters: [
'jest-log-failure-reporter',
],
...