https://github.com/borisosipov/wdio-reportportal-service
Service for https://github.com/BorisOsipov/wdio-reportportal-reporter
https://github.com/borisosipov/wdio-reportportal-service
hacktoberfest
Last synced: 3 months ago
JSON representation
Service for https://github.com/BorisOsipov/wdio-reportportal-reporter
- Host: GitHub
- URL: https://github.com/borisosipov/wdio-reportportal-service
- Owner: BorisOsipov
- License: mit
- Created: 2019-01-13T11:05:50.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-03-04T03:51:17.000Z (over 2 years ago)
- Last Synced: 2025-03-18T15:16:40.160Z (3 months ago)
- Topics: hacktoberfest
- Language: JavaScript
- Homepage:
- Size: 873 KB
- Stars: 5
- Watchers: 1
- Forks: 5
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-webdriverio - Report Portal - Service used by Report Portal Reporter. (Plugins / Services)
README
WDIO Report Portal Reporter service for WebdriverIO.
====================## Installation
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](https://webdriver.io/docs/gettingstarted).
## Configuration
Configure the output directory in your wdio.conf.js file:
```js
const RpService = require('wdio-reportportal-service');exports.config = {
// ...
services: [[RpService, {}]],
// ...
}
```## License
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