Skip to content

Commit

Permalink
Merge pull request #271 from tongant/master
Browse files Browse the repository at this point in the history
Write time to test case report if available
  • Loading branch information
klieber committed Apr 25, 2015
2 parents 9fd8d86 + ea7f985 commit 1ead090
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/resources/lib/createJunitXml.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ var junitXmlReporter;
writer.beginNode('testcase');
writer.attrib('classname','jasmine');
writer.attrib('name',name);
writer.attrib('time','0.0');
writer.attrib('time',''+specResult.time || '0.0');

if(skipped) {
this.writeSkipped(writer);
Expand Down

0 comments on commit 1ead090

Please sign in to comment.