angles-wdio-reporter
TypeScript icon, indicating that this package has built-in type declarations

1.0.19 • Public • Published

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.

Package Sidebar

Install

npm i angles-wdio-reporter

Weekly Downloads

1

Version

1.0.19

License

Apache-2.0

Unpacked Size

30.6 kB

Total Files

15

Last publish

Collaborators

  • snevesbarros