angles-wdio-reporter
v1.0.19
Published
This package contains the custom reporter to push your wdio test results to Angles.
Downloads
43
Maintainers
Readme
angles-wdio-reporter
The angles-wdio-reporter contains the custom reporter which can be used to store your wdio test results in the Angles Dashboard.
WebDriverIO
To integrate the Angles Dashboard with your webdriverIO test, we have set up a customer reporter AnglesWDIOReporter, which you can configure by adding the following custom reporter config to your wdio.conf.ts file. You will also need to add the AnglesWDIOService to your services as per the example below. A full example of this can be found in our webdriverio-example project.
{
reporters: [
[
AnglesWDIOReporter,
{
enabled: true,
buildName: 'Automated Test Run',
baseUrl: 'http://127.0.0.1:3000/rest/api/v1.0/',
reportingUrl: 'http://127.0.0.1:3001',
team: 'angles',
environment: 'qa',
component: 'wdio-example',
phase: 'crossbrowser',
artifacts: [
{
groupId: 'anglesHQ',
artifactId: 'angles-ui',
version: '1.0.0'
}
]
}
]
],
services: ['chromedriver', [AnglesWDIOService, {}]],
}
An example of how this has been used in a test can be found in the webdriverio-example project.