testcafe-reporter-ng-xunit
v1.0.9
Published
ng-xunit TestCafe reporter plugin.
Downloads
4
Maintainers
Readme
testcafe-reporter-ng-xunit
This is the ng-xunit reporter plugin for TestCafe.
Install
npm install testcafe-reporter-ng-xunit
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 ng-xunit
When you use API, pass the reporter name to the reporter()
method:
testCafe
.createRunner()
.src('path/to/test/file.js')
.browsers('chrome')
.reporter('ng-xunit') // <-
.run();
Author
Lalit Sharma (https://naukrigulf.com)