• Stars
    star
    132
  • Rank 273,230 (Top 6 %)
  • Language
    JavaScript
  • License
    MIT License
  • Created over 6 years ago
  • Updated over 1 year ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

A silent reporter for Jest

Jest Silent Reporter

Custom reporter for Jest that only prints failed tests.

Installation

Using npm:

$ npm i --save-dev jest-silent-reporter

Using yarn:

$ yarn add --dev jest-silent-reporter

Usage

Jest CLI:

jest --reporters=jest-silent-reporter

Jest config:

{
  "reporters": ["jest-silent-reporter"]
}

Options

useDots: boolean

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.

showWarnings: boolean

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.

showPaths: boolean

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.

Screenshots

All tests passed

Screenshot: all tests passed

Tests failed

Screenshot: some tests failed

Licence

MIT