mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
599 B
28 lines
599 B
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
|
|
const spawn = require('child_process').spawn;
|
|
|
|
process.env.HELLO = 'WORLD';
|
|
|
|
let child;
|
|
if (common.isWindows) {
|
|
child = spawn('cmd.exe', ['/c', 'set'], {});
|
|
} else {
|
|
child = spawn('/usr/bin/env', [], {});
|
|
}
|
|
|
|
let response = '';
|
|
|
|
child.stdout.setEncoding('utf8');
|
|
|
|
child.stdout.on('data', function(chunk) {
|
|
console.log('stdout: ' + chunk);
|
|
response += chunk;
|
|
});
|
|
|
|
process.on('exit', function() {
|
|
assert.ok(response.indexOf('HELLO=WORLD') >= 0,
|
|
'spawn did not use process.env as default');
|
|
});
|
|
|