Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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 (about 6 years ago)
- Default Branch: master
- Last Pushed: 2023-03-04T03:51:17.000Z (almost 2 years ago)
- Last Synced: 2024-10-18T02:03:23.589Z (3 months ago)
- Topics: hacktoberfest
- Language: JavaScript
- Homepage:
- Size: 873 KB
- Stars: 4
- Watchers: 2
- Forks: 4
- 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