2.0.7 • Published 2 years ago
testcafe-reporter-slack-message v2.0.7
testcafe-reporter-slack-message
This is the slack-message reporter plugin for TestCafe.
Install
npm install testcafe-reporter-slack-messageUsage
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 slack-messageWhen you use API, pass the reporter name to the reporter() method:
testCafe
.createRunner()
.src('path/to/test/file.js')
.browsers('chrome')
.reporter('slack-message') // <-
.run();Author
susana (https://github.com/work88/testcafe-reporter-slack-message)