1600133971 / testcafe-reporter-st-json

testcafe-reporter-st-json

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

testcafe-reporter-st-json

This is the JSON reporter plugin for TestCafe.

Install

npm install testcafe-reporter-st-json

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 st-json

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

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

Author

1600133971

About

testcafe-reporter-st-json

License:MIT License


Languages

Language:JavaScript 100.0%