Package Exports
- testcafe-reporter-list
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (testcafe-reporter-list) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
testcafe-reporter-list
This is the List reporter plugin for TestCafe.
Install
npm install -g testcafe-reporter-list
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 list
When you use API, pass the reporter name to the reporter()
method:
testCafe
.createRunner()
.src('path/to/test/file.js')
.browsers('chrome')
.reporter('list') // <-
.run();
Author
Developer Express Inc. (https://devexpress.com)