Improve this doc

WDIO Concise Reporter

A concise reporter for WebdriverIO. This project is derived from WDIO-Json-Reporter.

WDIO Concise Reporter error WDIO Concise Reporter success

Installation

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

1
2
3
4
5
{
"devDependencies": {
"wdio-concise-reporter": "~0.0.1"
}
}

You can simply do it by:

1
npm install wdio-concise-reporter --save-dev

Instructions on how to install WebdriverIO can be found here.

Configuration

Following code shows the default wdio test runner configuration. Just add 'concise' as reporter to the array.

1
2
3
4
5
6
// wdio.conf.js
module.exports = {
// ...
reporters: ['concise'],
// ...
};