1.2.0 • Published 2 years ago
testcafe-reporter-tesults v1.2.0
testcafe-reporter-tesults
[(https://travis-ci.org/ /testcafe-reporter-tesults.svg)](https://travis-ci.org/ /testcafe-reporter-tesults)
This is the tesults reporter plugin for TestCafe.
Install
npm install testcafe-reporter-tesultsUsage
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 tesultsWhen you use API, pass the reporter name to the reporter() method:
testCafe
.createRunner()
.src('path/to/test/file.js')
.browsers('chrome')
.reporter('tesults') // <-
.run();