1.0.30 • Published 2 years ago

wdio-wdiov5testrail-reporter-asychronous v1.0.30

Weekly downloads
-
License
ISC
Repository
-
Last release
2 years ago

wdio-wdiov5testrail-reporter-asychronous

TestRail reporter for versions 5 and 6 of WebdriverIO

Installation

npm install wdio-wdiov5testrail-reporter-asychronous --save-dev

Usage

Add the following to wdio.conf

const testrailUtil = require('wdio-wdiov5testrail-reporter-asychronous/lib');
  beforeSession: function (config, capabilities, specs) {
    testrailUtil.startup(this.reporters);
  },
  reporters: [
    ['wdiov5testrail', {
      domain: 'your domain',
      username: 'your testrail username',
      password: 'your testrail password (or api key)',
      projectId: your testrail project id,
      // See below for additional options
    }],
  ],