From e7647a229524baa6078ee13a8f7f620474e820cf Mon Sep 17 00:00:00 2001 From: Yaroslaff Fedin Date: Sun, 13 Nov 2011 22:25:28 +0800 Subject: [PATCH] Fix a bug, that stopped execution of local test suite if any of the conditions fail. --- lib/run.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/run.js b/lib/run.js index 93a8e03..da3b72d 100644 --- a/lib/run.js +++ b/lib/run.js @@ -9,7 +9,7 @@ module.exports = function (files) { }; function run (next, file) { - test.browser = file; + test.browser = 'node/jsdom'; test.harness.once('end', function () { process.nextTick(next.ok) });