0.1.2 • Published 10 years ago

protractor-trx-reporter v0.1.2

Weekly downloads
32
License
MIT
Repository
github
Last release
10 years ago

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.