Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I save protractor test results

Is there a way to output protractor test results to a file to be viewed outside of the command line after a test is run, including seeing detailed failures?

like image 209
DomX23 Avatar asked May 13 '14 14:05

DomX23


1 Answers

I found a nice clean way of saving the test results in a orderly fashion using Jasmine reporter.

How to install and configure Jasmine reporter:

Install Jasmine reporter:

npm install -g jasmine-reporters

Add the following to the protractor-config.js file:

  onPrepare: function() {
    require('jasmine-reporters');
    jasmine.getEnv().addReporter(
      new jasmineReporters.JUnitXmlReporter('outputxmldir', true, true));
  }

Create the outputxmldir folder (This is where all the test outputs will be placed).

Run protractor and now the results will be exported to an XML file in the outputxmldir folder.

like image 91
DomX23 Avatar answered Oct 23 '22 10:10

DomX23