From 7a54f96646977e778bfb639aa8a5c871d2962b52 Mon Sep 17 00:00:00 2001 From: azu Date: Mon, 20 Apr 2015 18:36:21 +0900 Subject: [PATCH] fix jasmine2 client finished state before: `suiteDone`: called when each describe completes execution after: `jasmineDone`: called when the jasmine suite completes execution --- frameworks/jasmine2/client.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frameworks/jasmine2/client.js b/frameworks/jasmine2/client.js index aec522b..31bfed8 100644 --- a/frameworks/jasmine2/client.js +++ b/frameworks/jasmine2/client.js @@ -29,7 +29,7 @@ ZuulJasmineReporter.prototype.getFullSpecName = function(spec, separator) { return getFullSuiteName(this.suite) + separator + spec.description; }; -ZuulJasmineReporter.prototype.suiteDone = function () { +ZuulJasmineReporter.prototype.jasmineDone = function () { reporter.done(); };