From 2301914549799255720437ff9163408c92675205 Mon Sep 17 00:00:00 2001 From: Gregg Van Hove Date: Wed, 4 Nov 2015 14:11:39 -0800 Subject: [PATCH] build combined file for jsApiReporter changes [#92249258] --- lib/jasmine-core/jasmine.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/jasmine-core/jasmine.js b/lib/jasmine-core/jasmine.js index fc540e76..8160588a 100644 --- a/lib/jasmine-core/jasmine.js +++ b/lib/jasmine-core/jasmine.js @@ -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'; };