1.1.0 • Published 5 years ago

@antonio.reyes/testcafe-reporter-xray v1.1.0

Weekly downloads
1
License
MIT
Repository
github
Last release
5 years ago

testcafe-reporter-xray

Build Status

This is the xray reporter plugin for TestCafe.

Install

npm install testcafe-reporter-xray

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 xray

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

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

Author

Antonio REYES (https://github.com/antreyes)