Skip to content

espekkaya/wdio-cucumber-reporter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.