Skip to content

Latest commit

 

History

History
37 lines (26 loc) · 812 Bytes

README.md

File metadata and controls

37 lines (26 loc) · 812 Bytes

WDIO step-by-step reporter

A WebdriverIO plugin to report in step-by-step style.

Installation

The easiest way is to keep wdio-spec-reporter as a devDependency in your package.json.

{
  "devDependencies": {
    "step-by-step-reporter": "https://github.com/shkaper/wdio-spec-reporter.git#master"
  }
}

Instructions on how to install WebdriverIO can be found here.

Configuration

To use this reporter, require it in your wdio.conf.js and add to reporters array:

// wdio.conf.js
const StepByStepReporter = require('step-by-step-reporter')

module.exports = {
  // ...
  reporters: [StepByStepReporter],
  // ...
};

For more information on WebdriverIO see the homepage.