@mochajs/json-file-reporter

1.3.0 • Public • Published

npm version JavaScript Style Guide

@mochajs/json-file-reporter

JSON file reporter for Mocha

Installation

$ npm i -D @mochajs/json-file-reporter

Usage

Use --reporter in your test command.

{
  "scripts": {
    "test": "mocha --reporter @mochajs/json-file-reporter"
  }
}

Or, add reporter to your configuration file.

{
  "reporter": "@mochajs/json-file-reporter"
}

Options

output

By default, it will output to report.json. To write to other file, use --reporter-options in your test command.

{
  "scripts": {
    "test": "mocha --reporter @mochajs/json-file-reporter --reporter-options output=filename.json"
  }
}

Or, add reporter-option to your configuration file.

{
  "reporter": "@mochajs/json-file-reporter",
  "reporter-option": [
    "output=filename.json"
  ]
}

Readme

Keywords

Package Sidebar

Install

npm i @mochajs/json-file-reporter

Weekly Downloads

17,840

Version

1.3.0

License

MIT

Unpacked Size

5.58 kB

Total Files

4

Last publish

Collaborators

  • munierujp