1.1.0 • Published 7 years ago
@antonio.reyes/testcafe-reporter-xray v1.1.0
testcafe-reporter-xray
This is the xray reporter plugin for TestCafe.
Install
npm install testcafe-reporter-xrayUsage
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 xrayWhen you use API, pass the reporter name to the reporter() method:
testCafe
.createRunner()
.src('path/to/test/file.js')
.browsers('chrome')
.reporter('xray') // <-
.run();Author
Antonio REYES (https://github.com/antreyes)