Skip to content

Commit

Permalink
Try not clearing the env for debug in the integration test and see if…
Browse files Browse the repository at this point in the history
… 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
  • Loading branch information
ScottFreeCode authored and boneskull committed Jul 26, 2017
1 parent 958fbb4 commit 68a1466
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/integration/helpers.js
Expand Up @@ -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;
Expand Down

0 comments on commit 68a1466

Please sign in to comment.