[test minor] Use `process.argv[0]` when spawning processes

Previous implementation used `node`.
master
Maciej Małecki 2011-11-19 01:29:01 +01:00
parent 07f8c3e558
commit 51700cae88
1 changed files with 3 additions and 2 deletions

View File

@ -43,11 +43,12 @@ exports.assertSystemConf = function (options) {
});
}
spawn('node', [options.script].concat(options.argv), { env: env })
spawn(process.argv[0], [options.script].concat(options.argv), { env: env })
.stdout.once('data', this.callback.bind(this, null));
},
"should respond with the value passed into the script": function (_, data) {
assert.equal(data.toString(), 'foobar');
}
}
}
}