[test minor] Use process.argv[0]
when spawning processes
Previous implementation used `node`.
This commit is contained in:
parent
07f8c3e558
commit
51700cae88
1 changed files with 3 additions and 2 deletions
|
@ -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) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue