@minimap-inc/json-file-reporter
v1.3.3
Published
JSON file reporter for Mocha
Downloads
48
Readme
@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"
]
}