Socket
Socket
Sign inDemoInstall

jest-summary-reporter

Package Overview
Dependencies
7
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

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.


Version published
Maintainers
1
Weekly downloads
25,742
decreased by-12.95%
Install size
97.1 kB

Weekly downloads

Readme

Source

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 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

FAQs

Last updated on 16 May 2018

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc