1.0.1 • Published 4 years ago

testcafe-reporter-testlink v1.0.1

Weekly downloads
6
License
MIT
Repository
github
Last release
4 years ago

testcafe-reporter-testlink

This is the testlink reporter plugin for TestCafe.

Install

npm install testcafe-reporter-testlink

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 testlink:results.xml

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

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

Changelog

v1.0.1 - Added check for skipped tests, so they won't be included in the report v1.0.0 - Initial release

Author

Beniamin Kis