/testcafe-reporter-agile

Primary LanguageJavaScriptMIT LicenseMIT

testcafe-reporter-agile

Build Status

This is the agile reporter plugin for TestCafe.

preview

Install

npm install testcafe-reporter-agile

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 agile

When you use API, pass the reporter name to the reporter() method:

testCafe
    .createRunner()
    .src('path/to/test/file.js')
    .browsers('chrome')
    .reporter('agile') // <-
    .run();

Author

RdPhnX (https://github.com/RdPhnX)