protractor-trx-reporter

0.1.2 • Public • Published

protractor-trx-reporter

Reporter for the VisualStudio TRX format.

Disclaimer

The trx reporter is provided by Zuehlke Engineering AG "as is" and the author disclaims all warranties with regard to this software.

Installation

The easiest way is to keep protractor-trx-reporter as a devDependency in your package.json.

{
  "devDependencies": {
    "protractor": "~0.16",
    "protractor-trx-reporter": "~0.1"
  }
}

You can simple do it by:

npm install protractor-trx-reporter --save-dev

Configuration

// protractor.conf.js
module.exports = function(config) {
    // creates the trx test report output xml
    onPrepare: function () {
        console.log('Adding TRX reporter');
        require('protractor-trx-reporter');
        jasmine.getEnv().addReporter(new jasmine.TrxReporter('ProtractorTestResults.trx'));
    },
};

For more information on Protractor see the homepage.

Package Sidebar

Install

npm i protractor-trx-reporter

Weekly Downloads

4

Version

0.1.2

License

MIT

Last publish

Collaborators

  • lehmamic
  • brtx
  • hatchteam