1.0.1 • Published 4 years ago

testcafe-reporter-slack-bot v1.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
4 years ago

testcafe-reporter-slack-bot

Build Status

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-bot

Usage

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-bot

When 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