# jest-quiet-reporter

> A Jest reporter that doesn't spam the console

Latest version **1.0.1** (published 2024-01-19) · MIT license · 0 weekly downloads

## Install

```sh
npm install jest-quiet-reporter
pnpm add jest-quiet-reporter
yarn add jest-quiet-reporter
bun add jest-quiet-reporter
```

## Health

**Score 25/100 (F)** — status: abandoned.

Positive: has types; no vulnerabilities; high quality score.

Warnings: low downloads; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.1 |
| Published | 2024-01-19 |
| First published | 2024-01-19 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | CommonJS |
| Dependencies | 8 |
| Unpacked size | 270.9 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | 5778036+rhinodavid@users.noreply.github.com |
| Maintainers | rhinodavid |
| Keywords | jest, testing, typescript, ci, tdd |

## Links

- npm: https://www.npmjs.com/package/jest-quiet-reporter
- Repository: https://github.com/rhinodavid/jest-quiet-reporter
- Issues: https://github.com/rhinodavid/jest-quiet-reporter/issues
- npm.io page: https://npm.io/package/jest-quiet-reporter

## Dependencies (8)

- [chalk](https://npm.io/package/chalk.md) 4.1.2
- [slash](https://npm.io/package/slash.md) 3.0.0
- [jest-util](https://npm.io/package/jest-util.md) 29.7.0
- [strip-ansi](https://npm.io/package/strip-ansi.md) 6.0.0
- [@jest/console](https://npm.io/package/@jest/console.md) 29.7.0
- [string-length](https://npm.io/package/string-length.md) 4.0.2
- [@jest/reporters](https://npm.io/package/@jest/reporters.md) 29.7.0
- [jest-message-util](https://npm.io/package/jest-message-util.md) 29.7.0

## Alternatives

- [duck](https://npm.io/package/duck.md) — 4.2M weekly downloads
- [ava](https://npm.io/package/ava.md) — 560.2K weekly downloads
- [storybook-addon-module-mock](https://npm.io/package/storybook-addon-module-mock.md) — 71.7K weekly downloads
- [vest](https://npm.io/package/vest.md) — 50.1K weekly downloads
- [@ethereum-waffle/mock-contract](https://npm.io/package/@ethereum-waffle/mock-contract.md) — 40.0K weekly downloads

## Recent versions

- 1.0.1 (latest) — 2024-01-19
- 1.0.0 — 2024-01-19

## README

# jest-quiet-reporter

![Reporter Output Screenshot](./screenshot.png)

All the Jest reporters [out there](https://github.com/jest-community/awesome-jest/tree/02e5ca32a254fdc708d2ce0cb983ad572136ec7f?tab=readme-ov-file#reporters) are either silent or noisy.

`jest-quiet-reporter` is a twist on the built-in [Default Reporter](https://github.com/jestjs/jest/blob/main/packages/jest-reporters/src/DefaultReporter.ts).

**For passing tests, it only outputs "PASS" with the test path and the time. But for failing tests, it shows you the STDOUT and STDERR logs produced during the tests.** Now you can `console.log` to your heart's content and only see it when you need it.

## Usage

Install:

```
pnpm add -D jest-quiet-reporter
```

Jest CLI:

```
jest --reporters=jest-quiet-reporter
```

Jest configuration file:

```
{
  "reporters": ["jest-quiet-reporter"]
}
```

---
_Source: https://npm.io/package/jest-quiet-reporter · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
