Skip to content

Latest commit

 

History

History
69 lines (47 loc) · 1011 Bytes

README.md

File metadata and controls

69 lines (47 loc) · 1011 Bytes

differencify-jest-reporter

A Jest reporter for Differencify

Installation

Using npm:

$ npm i -D differencify-jest-reporter

Usage

Jest CLI:

jest --reporters differencify-jest-reporter

Jest Config:

{
  "reporters": ["differencify-jest-reporter"]
}

Options

debug: boolean

Logs the output to consol

failedOnly: boolean

Only include failed tests in report

reportPath: string

Report directory relative to root of project

reportTypes: object

File name for generating a html report and json

  reporters: [
    'default', // keep the default reporter
    [
      'differencify-jest-reporter',
      {
        debug: true,
        failedOnly: false,
        reportPath: 'differencify_reports',
        reportTypes: {
          html: 'index.html',
          json: 'index.json',
        },
      },
    ],
  ],

Note: Options are available only via jest.config file

Licence

MIT