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.
18 lines
509 B
18 lines
509 B
8 years ago
|
'use strict';
|
||
|
const common = require('../common');
|
||
|
const assert = require('assert');
|
||
|
|
||
|
const expected = '--option-to-be-seen-on-child';
|
||
|
|
||
|
const { spawn } = require('child_process');
|
||
|
const child = spawn(process.execPath, ['-', expected], { stdio: 'pipe' });
|
||
|
|
||
|
child.stdin.end('console.log(process.argv[2])');
|
||
|
|
||
|
let actual = '';
|
||
|
child.stdout.setEncoding('utf8');
|
||
|
child.stdout.on('data', (chunk) => actual += chunk);
|
||
|
child.stdout.on('end', common.mustCall(() => {
|
||
|
assert.strictEqual(actual.trim(), expected);
|
||
|
}));
|