WDIO TAP reporter

WebdriverIO TAP reporter which makes it possible to output tests results in TAP 13 format thus the output is compatible with any TAP reporter.

Installation

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

Instructions on how to install WebdriverIO can be found here.

Configuration

Add the reporter to your reporter list in your wdio.conf.js file:

1
2
3
4
5
exports.config = {
// ...
reporters: ['tap'],
// ...
}