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

Previous implementation used `node`.
This commit is contained in:
Maciej Małecki 2011-11-19 01:29:01 +01:00
parent 07f8c3e558
commit 51700cae88

View file

@ -43,7 +43,7 @@ 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)); .stdout.once('data', this.callback.bind(this, null));
}, },
"should respond with the value passed into the script": function (_, data) { "should respond with the value passed into the script": function (_, data) {
@ -51,3 +51,4 @@ exports.assertSystemConf = function (options) {
} }
} }
} }