multiple-cucumber-html-reporter-ignore-skipped-pending-tests
v1.0.2
Published
Generate beautifull cucumberjs reports for multiple instances (browsers / devices) with ability to ignore the skipped/pending tests. This lib is based from original multiple-cucumber-html-reporter
Downloads
215
Maintainers
Readme
Multiple Cucumber HTML Reporter - Ability to ignore the skipped and pending skipped
This project is based on the project https://www.npmjs.com/package/multiple-cucumber-html-reporter. On this project, I add the ability to ignore the skipped and pending tests (feature,scenario) on html reporter
Install
Install this module locally with the following command:
npm install multiple-cucumber-html-reporter-ignore-skipped-pending-tested
Save to dependencies or dev-dependencies:
npm install mmultiple-cucumber-html-reporter-ignore-skipped-pending-tested --save
npm install multiple-cucumber-html-reporter-ignore-skipped-pending-tested --save-dev
Legacy multiple-cucumber-html-reporter
Refer [https://www.npmjs.com/package/multiple-cucumber-html-reporter] https://www.npmjs.com/package/multiple-cucumber-html-reporter
New configuration to ignore the skipped and pending tests from generating html report
To ignore the skipped and pending tests from generating html report, add configuration report.generate: ignoreSkipTest: true
in the file cucumber-html-reporter.js
const report = require("multiple-cucumber-html-reporter-ignore-skipped-pending-tests");
report.generate({
// configuration...
ignoreSkipTest: true
})