testcafe-reporter-liv-report
v1.0.28
Published
TestCafe reporter plugin
Readme
testcafe-reporter-liv-report
This is the reporter plugin for TestCafe.
Install
npm install testcafe-reporter-liv-reportUsage
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 liv-report- cd into your project.
- Edit or create the .env file by adding the following required variables:
DASHBOARD_URL=http://example.com
DASHBOARD_TOKEN=XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX
PROJECT_NAME=My_Demo
ENVIRONMENT=Env_nameWhen you use API, pass the reporter name to the reporter() method:
testCafe
.createRunner()
.src('path/to/test/file.js')
.browsers('chrome')
.reporter('liv-report') // <-
.run();