wdio-reportportal-service
Version:
A WebdriverIO v5 service for wdio-reportportal-reporter.
36 lines (28 loc) • 864 B
Markdown
WDIO Report Portal Reporter service for WebdriverIO.
====================
The easiest way is to keep `wdio-reportportal-service` as a devDependency in your `package.json`.
```json
{
"devDependencies": {
"wdio-reportportal-service": "^7.3.0"
}
}
```
You can do it by:
```bash
npm install wdio-reportportal-reporter --save-dev
```
Instructions on how to install `WebdriverIO` can be found [here](http://webdriver.io/guide/getstarted/install.html).
Configure the output directory in your wdio.conf.js file:
```js
const RpService = require('wdio-reportportal-service');
exports.config = {
// ...
services: [[RpService, {}]],
// ...
}
```
This project is licensed under the MIT License - see the [LICENSE.md](https://github.com/BorisOsipov/wdio-reportportal-service/blob/master/LICENSE) file for details