Custom reporter for Jest that only prints failed tests.
Using npm:
$ npm i --save-dev jest-silent-reporterUsing yarn:
$ yarn add --dev jest-silent-reporterJest CLI:
jest --reporters=jest-silent-reporterJest config:
{
"reporters": ["jest-silent-reporter"]
}For large test suites, jest-silent-reporter can cause CI to fail due to having
no output for some configured amount of time. Using the useDots option will
output dots for each test file, similar to a dot reporter.
{
"reporters": [["jest-silent-reporter", { "useDots": true }]]
}Note: this config is also available as an environment variable JEST_SILENT_REPORTER_DOTS=true.
Warnings are supressed by default, use showWarnings to log them.
{
"reporters": [["jest-silent-reporter", { "showWarnings": true }]]
}Note: this config is also available as an environment variable JEST_SILENT_REPORTER_SHOW_WARNINGS=true.
Sometimes it might come in handy to display the test suites' paths (i.e. when running tests in a terminal inside IDE for quicker file navigation).
{
"reporters": [["jest-silent-reporter", { "showPaths": true }]]
}Note: this config is also available as an environment variable JEST_SILENT_REPORTER_SHOW_PATHS=true.
MIT



