emmajam / jest-dot-reporter

Simple Jest Dot reporter

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Simple dot reporter for jest Build Status npm version

Installation

You may install this package as a development dependency:

npm install --save-dev jest-dot-reporter

⚠ Tested with Node 8.4 and Jest 21.2.1

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-dot-reporter'
  ]
};

You can checkout the expected output:

git clone https://github.com/pierreroth64/jest-dot-reporter.git
cd jest-dot-reporter
npm install
npm run example

Test run

About

Simple Jest Dot reporter

License:MIT License


Languages

Language:JavaScript 100.0%