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
npm install multiple-cucumber-html-reporter-ignore-skipped-pending-testsMultiple 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
bash
npm install multiple-cucumber-html-reporter-ignore-skipped-pending-tested
`
Save to dependencies or dev-dependencies:
` bash
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
`javascript
const report = require("multiple-cucumber-html-reporter-ignore-skipped-pending-tests");
report.generate({
// configuration...
ignoreSkipTest: true
})
``