build combined file for jsApiReporter changes

[#92249258]
This commit is contained in:
Gregg Van Hove
2015-11-04 14:11:39 -08:00
parent 320c42b6cc
commit 2301914549

View File

@@ -1011,6 +1011,7 @@ getJasmineRequireObj().JsApiReporter = function() {
this.started = false;
this.finished = false;
this.runDetails = {};
this.jasmineStarted = function() {
this.started = true;
@@ -1020,8 +1021,9 @@ getJasmineRequireObj().JsApiReporter = function() {
var executionTime;
this.jasmineDone = function() {
this.jasmineDone = function(runDetails) {
this.finished = true;
this.runDetails = runDetails;
executionTime = timer.elapsed();
status = 'done';
};