mirror of
https://github.com/nodejs/node.git
synced 2025-05-18 11:29:35 +00:00

In addition to removing unused vars, this also fixes an instance where booleans were set presumably to check something but then never used. This now confirms that the events that were setting the booleans are fired. PR-URL: https://github.com/nodejs/node/pull/4425 Reviewed-By: Johan Bergström <bugs@bergstroem.nu> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
20 lines
475 B
JavaScript
20 lines
475 B
JavaScript
'use strict';
|
|
var common = require('../common');
|
|
var assert = require('assert');
|
|
|
|
var options = {stdio: ['pipe']};
|
|
var child = common.spawnPwd(options);
|
|
|
|
assert.notEqual(child.stdout, null);
|
|
assert.notEqual(child.stderr, null);
|
|
|
|
options = {stdio: 'ignore'};
|
|
child = common.spawnPwd(options);
|
|
|
|
assert.equal(child.stdout, null);
|
|
assert.equal(child.stderr, null);
|
|
|
|
options = {stdio: 'ignore'};
|
|
child = common.spawnSyncCat(options);
|
|
assert.deepEqual(options, {stdio: 'ignore'});
|