@neovici/wdio-vso-reporter

A WebdriverIO reporter plugin to log in Azure pipelines log format.

Usage no npm install needed!

<script type="module">
  import neoviciWdioVsoReporter from 'https://cdn.skypack.dev/@neovici/wdio-vso-reporter';
</script>

README

Azure VSO Reporter

A WebdriverIO reporter to log in Azure pipelines log format.

Installation

The easiest way is to keep @neovici/wdio-vso-reporter as a devDependency in your package.json.

{
  "devDependencies": {
    "@neovici/wdio-vso-reporter": "^1.0.0"
  }
}

You can simple do it by:

npm install @neovici/wdio-vso-reporter --save-dev

Instructions on how to install WebdriverIO can be found here.

Output

This reporter will log test errors using Azure logging commands.

Configuration

The following code shows the default wdio test runner configuration. Just add '@neovici/wdio-vso-reporter' as reporter to the array.

// wdio.conf.js
module.exports = {
    // ...
    reporters: [
        'dot',
        '@neovici/wdio-vso-reporter',
    ],
    // ...
};

For more information on WebdriverIO see the homepage.