Gathering detailed insights and metrics for jest-silent-reporter
Gathering detailed insights and metrics for jest-silent-reporter
Gathering detailed insights and metrics for jest-silent-reporter
Gathering detailed insights and metrics for jest-silent-reporter
npm install jest-silent-reporter
Module System
Min. Node Version
Typescript Support
Node Version
NPM Version
146 Stars
36 Commits
18 Forks
6 Watching
1 Branches
9 Contributors
Updated on 24 Oct 2024
Minified
Minified + Gzipped
JavaScript (100%)
Cumulative downloads
Total Downloads
Last day
-5.4%
31,750
Compared to previous day
Last week
-0.8%
182,413
Compared to previous week
Last month
-9.8%
763,656
Compared to previous month
Last year
31.1%
8,377,209
Compared to previous year
Jest Silent Reporter
Custom reporter for Jest that only prints failed tests.
Using npm:
1$ npm i --save-dev jest-silent-reporter
Using yarn:
1$ yarn add --dev jest-silent-reporter
Jest CLI:
1jest --reporters=jest-silent-reporter
Jest config:
1{ 2 "reporters": ["jest-silent-reporter"] 3}
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.
1{ 2 "reporters": [["jest-silent-reporter", { "useDots": true }]] 3}
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.
1{ 2 "reporters": [["jest-silent-reporter", { "showWarnings": true }]] 3}
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).
1{ 2 "reporters": [["jest-silent-reporter", { "showPaths": true }]] 3}
Note: this config is also available as an environment variable JEST_SILENT_REPORTER_SHOW_PATHS=true
.
MIT
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
2 existing vulnerabilities detected
Details
Reason
Found 11/30 approved changesets -- score normalized to 3
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Score
Last Scanned on 2024-11-18
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More