testcafe-reporter-slack-bot
v1.0.1
Published
slack-bot TestCafe reporter plugin.
Downloads
4
Maintainers
Readme
testcafe-reporter-slack-bot
This is the slack-bot reporter plugin for TestCafe.
Requirements
You must register for a slack account and create and configure an app. Go to Slack and follow the instructions. You'll get a token that will need to be put in an .env file in your project root directory in this format:
SLACK_API_TOKEN = {YOUR SLACK API TOKEN HERE}Install
npm install testcafe-reporter-slack-botUsage
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-botWhen you use API, pass the reporter name to the reporter() method:
testCafe
.createRunner()
.src('path/to/test/file.js')
.browsers('chrome')
.reporter('slack-bot') // <-
.run();Author
William Estrada
