1.0.1 • Published 7 years ago
testcafe-reporter-failsafe v1.0.1
testcafe-reporter-failsafe
This is a reporter plugin for TestCafe which reports tests within an XML readable by failsafe.
Install
You can install it using
npm install testcafe-reporter-failsafeUsage
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 failsafeWhen you use API, pass the reporter name to the reporter() method:
testCafe
.createRunner()
.src('path/to/test/file.js')
.browsers('chrome')
.reporter('failsafe') // <-
.run();Author
Sqooba IO (https://sqooba.io)
Based on testcafe-reporter-xunit.