From 68a1466a5ec56f7477a2f14cd327bdcabc3727e3 Mon Sep 17 00:00:00 2001 From: ScottFreeCode Date: Tue, 20 Jun 2017 23:26:29 -0400 Subject: [PATCH] Try not clearing the env for debug in the integration test and see if that fixes Node 0.10 on AppVeyor; if need be, some other fix/workaround can be applied to handle whatever was up with debug without causing this issue --- test/integration/helpers.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/integration/helpers.js b/test/integration/helpers.js index 58749b2c80..f2d9c81192 100644 --- a/test/integration/helpers.js +++ b/test/integration/helpers.js @@ -115,10 +115,10 @@ module.exports = { function invokeMocha (args, fn) { var output, mocha, listener; - // ensure DEBUG doesn't kill tests + output = ''; args = [path.join('bin', 'mocha')].concat(args); - mocha = spawn(process.execPath, args, {env: {}}); + mocha = spawn(process.execPath, args); listener = function (data) { output += data;