1.0.2 • Published 2 years ago

multiple-cucumber-html-reporter-ignore-skipped-pending-tests v1.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

Multiple Cucumber HTML Reporter - Ability to ignore the skipped and pending skipped

MIT license

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
})