@espekkaya/wdio-cucumber-reporter

webdriverio plugin of cucumber report

Usage no npm install needed!

<script type="module">
  import espekkayaWdioCucumberReporter from 'https://cdn.skypack.dev/@espekkaya/wdio-cucumber-reporter';
</script>

README

WDIO Cucumber Reporter Plugin

This wdio plugin was created based on this.

A WebdriverIO plugin to report in cucumber style.

It was tested on Webdriverio v6 and v7.

Installation

Firstly install in your devdependency

npm install @espekkaya/wdio-cucumber-reporter --save-dev

Configuration

Your wdio.conf.js file should look like this:

import CucumberReporter from '@espekkaya/wdio-cucumber-reporter';

exports.config = {
    // ...
    reporters: [
        CucumberReporter
    ],
    // ...
};

For more information on WebdriverIO see the homepage.