# jest-summary-reporter

> Simple reporter to summarize the failing tests at the END of a test run. Without this, you may be scrolling through pages of results to figure out which files to edit.

Latest version **0.0.2** (published 2018-05-16) · MIT license · 0 weekly downloads

## Install

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

## Health

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

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.2 |
| Published | 2018-05-16 |
| First published | 2018-05-15 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Unpacked size | 5.6 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 5 |
| Author | tony@lownds.com |
| Maintainers | tln |

## Links

- npm: https://www.npmjs.com/package/jest-summary-reporter
- Repository: https://github.com/tln/jest-summary-reporter
- Homepage: https://github.com/tln/jest-summary-reporter#readme
- Issues: https://github.com/tln/jest-summary-reporter/issues
- npm.io page: https://npm.io/package/jest-summary-reporter

## Dependencies (1)

- [chalk](https://npm.io/package/chalk.md) ^2.4.1

## Recent versions

- 0.0.2 (latest) — 2018-05-16
- 0.0.1 — 2018-05-15

## README

# Summary reporter for Jest

Simple reporter to summarize the failing tests at the END of a test run. Without this, you may be scrolling through pages of results to figure out which files to edit.

See the [issue](https://github.com/facebook/jest/issues/3322) that inspired this.

## Configuration

Add `jest-summary-reporter` in addition to default reporters that Jest provides:
```
{
  "reporters": [
    "default",
    "jest-summary-reporter"
  ]
}
```

If you want to see passing/pending tests as well:
```
{
  "reporters": [
    "default",
    ["jest-summary-reporter", {"failuresOnly": false}]
  ]
}
```

NB: This module is not complete enough to be useful as the only reporter.

See also: [Jest docs for custom reporter configuration](
https://facebook.github.io/jest/docs/en/configuration.html#reporters-array-modulename-modulename-options
)

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