From ccdcb293f4f15c60d6173866e7b169d80afd2c29 Mon Sep 17 00:00:00 2001 From: Sheel Choksi Date: Sun, 7 Jul 2013 21:01:53 -0700 Subject: [PATCH] Add back in forgotten 'env' to Env integration specs As pointed out by @jdmarshall. Fixes #399 --- spec/core/EnvSpec.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/spec/core/EnvSpec.js b/spec/core/EnvSpec.js index fbb69b45..db221c4c 100644 --- a/spec/core/EnvSpec.js +++ b/spec/core/EnvSpec.js @@ -191,7 +191,8 @@ describe("Env integration", function() { // TODO: something is wrong with this spec it("should report as expected", function(done) { - var reporter = jasmine.createSpyObj('fakeReporter', [ + var env = new j$.Env(), + reporter = jasmine.createSpyObj('fakeReporter', [ "jasmineStarted", "jasmineDone", "suiteStarted",