mirror of
https://github.com/zebrajr/node.git
synced 2026-01-15 12:15:26 +00:00
test: spawn process.argv[0], not 'node'
'node' may or may not be on the path and may or may not be the version we are running the test suite for.
This commit is contained in:
@@ -24,7 +24,7 @@ var assert = require('assert')
|
||||
var spawn = require('child_process').spawn;
|
||||
var common = require('../common');
|
||||
|
||||
var child = spawn('node', [path.join(common.fixturesDir, 'GH-1899-output.js')]);
|
||||
var child = spawn(process.argv[0], [path.join(common.fixturesDir, 'GH-1899-output.js')]);
|
||||
var output = '';
|
||||
|
||||
child.stdout.on('data', function (data) {
|
||||
|
||||
Reference in New Issue
Block a user