1.0.2 • Published 3 years ago

@espekkaya/wdio-cucumber-reporter v1.0.2

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

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.