Socket
Socket
Sign inDemoInstall

jest-json-reporter2

Package Overview
Dependencies
2
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    jest-json-reporter2

a reporter for jest that saves test results to json file


Version published
Weekly downloads
6.8K
decreased by-7.79%
Maintainers
1
Install size
152 kB
Created
Weekly downloads
 

Readme

Source

Jest JSON Reporter

A reporter for jest that saves test results to JSON file.

Installation

yarn add --dev jest-json-reporter2

Usage

Add the following config to your jest.config.js or the Jest configuration in the package.json.

// default options
const jsonreporter2Options = {
  outputDir = './coverage', // what directory to output to
  outputFile = 'test-results.json',  // what to call the file
  fullOutput = false // to output the full results from Jest or consolidated results
}

module.exports = {
  rootDir: process.cwd(),
  // ...other config

  // without options
  reporters: ['jest-json-reporter2']

  // with options
  reporters: [['jest-json-reporter2', jsonreporter2Options]]
};

Full or Consolidated Output

We give you the option to output the full results returned by Jest or a consolidated view. See the options above to see how to flip between outputs.

Consolidated Output
{
  "suites": {
    "failed": 0,
    "skipped": 1,
    "success": 2
  },
  "tests": {
    "failed": 0,
    "skipped": 1,
    "success": 2
  }
}
Full Output

{
  "numFailedTestSuites": 0,
  "numFailedTests": 0,
  "numPassedTestSuites": 1,
  "numPassedTests": 1,
  "numPendingTestSuites": 0,
  "numPendingTests": 0,
  "numRuntimeErrorTestSuites": 0,
  "numTotalTestSuites": 1,
  "numTotalTests": 1,
  "snapshot": {
    "added": 0,
    "didUpdate": false,
    "failure": false,
    "filesAdded": 0,
    "filesRemoved": 0,
    "filesUnmatched": 0,
    "filesUpdated": 0,
    "matched": 0,
    "total": 0,
    "unchecked": 0,
    "uncheckedKeys": [],
    "unmatched": 0,
    "updated": 0
  },
  "startTime": 1520435906852,
  "success": false,
  "testResults": [
    {
      "console": null,
      "failureMessage": null,
      "numFailingTests": 0,
      "numPassingTests": 1,
      "numPendingTests": 0,
      "perfStats": {
        "end": 1520435908707,
        "start": 1520435907548
      },
      "snapshot": {
        "added": 0,
        "fileDeleted": false,
        "matched": 0,
        "unchecked": 0,
        "unmatched": 0,
        "updated": 0,
        "uncheckedKeys": []
      },
      "testFilePath": "/Users/who/dir/__tests__/index.js",
      "testResults": [
        {
          "ancestorTitles": [],
          "duration": 8,
          "failureMessages": [],
          "fullName": "it should call the post route with the proper data",
          "location": null,
          "numPassingAsserts": 0,
          "status": "passed",
          "title": "it should call the post route with the proper data"
        }
      ],
      "sourceMaps": {},
      "skipped": false,
      "leaks": false
    }
  ],
  "wasInterrupted": false
}

FAQs

Last updated on 11 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