KO
|
EN
gitlite — search
Search
#typescript
#ai-agents
#deepseek-harness
#dsh-plugin
#open-source
#ai
#cli
#dsh
#claude-code
#codex
#developer-tools
#react
jest-silent-reporter
★ 158
Open GitHub ↗
A silent reporter for Jest
Download README (.md)
Explore Similar Repositories
ngx-masonry
:
Angular Module for displaying a feed of items in a masonry layout
Hawaii
:
dotnet CLI tool to generate type-safe F# and Fable clients from OpenAPI/Swagger or OData services
portara
:
Portara directive is a rate limiter / throttler for GraphQL
PoseEstimation-TFLiteSwift
:
The baseline project for inferencing various Pose Estimation tflite models with TFLiteSwift on iOS
prometheus-grafana-alertmanager-example
:
A docker-compose stack for Prometheus monitoring
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
jest-silent-reporter
?
Download (.md)
<h1 align="center"> <img src="https://user-images.githubusercontent.com/2440089/188526466-f9934af0-bd67-4d03-ad84-8ff0a41761e8.png" height="150"/> <p>Jest Silent Reporter</p> </h1> <p align="center"> Custom <a href="https://jestjs.io/docs/en/configuration#reporters-array-modulename-modulename-options">reporter</a> for <a href="https://jestjs.io">Jest</a> that only prints failed tests.</p> <p align="center"> <img src="https://user-images.githubusercontent.com/2440089/188526149-afb2600a-ddb3-49ec-83e8-dfdc2fb975d2.png" height="200"/> </p> ## Installation Using [npm](https://www.npmjs.com/): ```sh $ npm i --save-dev jest-silent-reporter ``` Using [yarn](https://yarnpkg.com/): ```sh $ yarn add --dev jest-silent-reporter ``` ## Usage Jest CLI: ```bash jest --reporters=jest-silent-reporter ``` Jest config: ```json { "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. ```json { "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. ```json { "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). ```json { "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  #### Tests failed  ## Licence MIT