1.0.2 • Published 5 years ago

testcafe-reporter-network v1.0.2

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

testcafe-reporter-network-reporter

Build Status

This is the network-reporter reporter plugin for TestCafe.

Install

npm install testcafe-reporter-network-reporter

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 network-reporter

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

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

Author

Camilo Manrique