Installation
Learn how to install and set up Multiple Cucumber HTML Reporter.
Multiple Cucumber HTML Reporter can be installed easily using your favorite package manager.
Install globally
The reporter comes with an in-built command line tool which helps in generating the report without requiring you to write any script to generate the report.
To install globally, run the following command in your terminal:
npm install multiple-cucumber-html-reporter --globalCheck out more about the command line tool.
Install Locally
If you want to generate the report programmatically by creating a script, then you need to install the package locally in your project by running the following command in your terminal in your project directory:
npm install multiple-cucumber-html-reporter --save-devCompatibility
This reporter is highly compatible with different versions of CucumberJS:
- CucumberJS 1: Fully supported.
- CucumberJS 2: Fully supported.
- CucumberJS 3: Supported (requires a separate script).
- CucumberJS 4: Fully supported.
Note
For WebdriverIO users, please check our WebdriverIO Integration Guide for a simplified setup.
Last updated on