Package Exports
- testcafe-reporter-html
 
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (testcafe-reporter-html) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
testcafe-reporter-html
PICUS' HTML reporter generator for TestCafe automated tests. It provides an HTML report of a TestCafe task(s) execution, as well as feedback on the errors, if these occurred.
Table of Contents
Installation and setup
1. Install package
$ npm install testcafe-reporter-html2. Configure
If no configuration is specified, the generated file will be called report.html and found in the project's root path.
A configuration file tcr-html.config.js can be used to specify any value:
// tcr-html.config.js
module.exports = {
  fileName: 'test.html',
  outputPath: 'public',
};3. Add the reporter flag to your test task runner
$ testcafe chrome test_folder/ --reporter htmlContributing
If you'd like to contribute a feature or bugfix: Thanks! To make sure your fix/feature has a high chance of being included, please read the following guidelines:
- Post a pull request.
 - Make sure there are tests! We will not accept any patch that is not tested. It's a rare time when explicit tests aren't needed. If you have questions about writing tests for testcafe-reporter-html, please open a GitHub issue.
 
Please see CONTRIBUTING.md for more details on contributing and running test.
Thank you to all the contributors!
By participating in this project, you agree to abide by the PICUS code of conduct.