1.0.2 • Published 7 years ago
testcafe-reporter-time v1.0.2
testcafe-reporter-time
This is the time reporter plugin for TestCafe.
Install
npm install testcafe-reporter-timeUsage
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 timeWhen you use API, pass the reporter name to the reporter() method:
testCafe
.createRunner()
.src('path/to/test/file.js')
.browsers('chrome')
.reporter('time') // <-
.run();Author
Luciano Listorti