nightharbor-file-reporter
v0.2.0
Published
nightharbor reporter for local file
Downloads
50
Maintainers
Readme
nightharbor-file-reporter
A nightharbor reporter for local file.
$ npm install --save nightharbor nightharbor-file-reporter
report by json and csv
import {CsvReporter, JsonReporter} from "nightharbor/reporter";
const reporter = new JsonReporter("/path/to/output.json");
export default {
...,
reporters: [
new CsvReporter("/path/to/output.csv"),
new JsonReporter("/path/to/output.json")
],
...
}