JSPM

jest-mocha-spec-reporter

1.0.17
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 132
  • Score
    100M100P100Q83229F
  • License MIT

Jest reporter with Mocha spec style logging.

Package Exports

  • jest-mocha-spec-reporter

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (jest-mocha-spec-reporter) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Jest reporter with Mocha spec style logging

This is a fork of peio's jest-spec-reporter, tweaking it to look like Mocha's spec reporter.

Here is the output of npm run example:

Installation

You may install this package as a development dependency:

npm install --save-dev jest-mocha-spec-reporter

Configuration

Configure Jest to use the reporter.

For example, create a jest.config.js file containing:

module.exports = {
  verbose: false,
  testPathIgnorePatterns: ["/node_modules/"],
  reporters: ["jest-mocha-spec-reporter"]
};