testcafe-reporter-json-kibana
v1.0.2
Published
JSON TestCafe reporter plugin for kibana.
Downloads
1
Maintainers
Readme
testcafe-reporter-json
This is the JSON reporter plugin for TestCafe. Copy from https://github.com/DevExpress/testcafe-reporter-json with one difference, line break character removed. I did it for kibana. Without breaks it is easier to parse
Install
However, if you need to install this reporter, you can use the following command.
npm install testcafe-reporter-json-kibana
Usage
When you run tests from the command line, specify the reporter name by using the --reporter
option:
testcafe chrome 'path/to/test/file.js' --reporter json-kibana
When you use API, pass the reporter name to the reporter()
method:
testCafe
.createRunner()
.src('path/to/test/file.js')
.browsers('chrome')
.reporter('json-kibana') // <-
.run();
Author
Developer Express Inc. (https://devexpress.com)