testcafe-reporter-allure-custom
v1.1.5
Published
allure-custom TestCafe reporter plugin.
Downloads
618
Readme
testcafe-reporter-allure-custom
This is the allure-custom reporter plugin for TestCafe.
This plugin extension was made because the original did not contain all the requirements for my project. This package is meant for personal project use and that is why you will see some specific meta-data, which fits my case the best. But of course you are free to use it for whatever you want.
Install
npm install testcafe-reporter-allure-custom
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 allure-custom
When you use API, pass the reporter name to the reporter()
method:
testCafe
.createRunner()
.src('path/to/test/file.js')
.browsers('chrome')
.reporter('allure-custom') // <-
.run();
Author
Alexandr Grisin