@orangebeard-io/wdio-orangebeard-reporter
v1.0.3
Published
A reporter and service to send WDIO test output to Orangebeard
Downloads
1
Maintainers
Readme
Installation
Install the npm package
npm install @orangebeard-io/wdio-orangebeard-reporter
Configuration
In your wdio config file(s), import the service and reporter and provide the necessary configuration
import {OrangebeardService, OrangebeardReporter} from 'wdio-orangebeard-reporter'
const orangebeardConfig = {
token: '00000000-0000-0000-00000000',
endpoint: 'https://my.orangebeard.app',
project: 'my_project',
testset: 'WebdriverIO Test',
description: "A WDIO Test Run"
};
Then add the responder and service to the reporters and services array, providing the configuration object
reporters: [[OrangebeardReporter, orangebeardConfig]],
services: [[OrangebeardService, orangebeardConfig]],
Running
Now run your tests normally and get results in Orangebeard