wdio-tap-reporter
v0.0.5
Published
A WebdriverIO plugin. Report results in 'tap' format
Downloads
31
Maintainers
Readme
WDIO TAP reporter
A WebdriverIO plugin to report in TAP format style. Output is based on specification for TAP13
Installation
The easiest way is to keep wdio-tap-reporter
as a devDependency in your package.json
.
{
"devDependencies": {
"wdio-tap-reporter": "~0.0.4"
}
}
You can simple do it by:
npm install wdio-tap-reporter --save-dev
or if you are using yarn (which I recommend):
yarn add wdio-tap-reporter -D
Instructions on how to install WebdriverIO
can be found here.
Configuration
Following code shows the default wdio test runner configuration. Just add 'tap'
as reporter
to the array.
// wdio.conf.js
module.exports = {
// ...
reporters: ['dot', 'tap'],
// ...
};
Usage
Reporter outputs tests results in the TAP format and thus the output is compatible with any TAP reporter.
Simply pipe the output to reporter you want to use:
wdio | tap-nyan