mirror of
https://github.com/nodejs/node.git
synced 2024-11-30 15:30:56 +01:00
14 lines
335 B
JavaScript
14 lines
335 B
JavaScript
|
'use strict';
|
||
|
|
||
|
const assert = require('assert');
|
||
|
const common = require('../common');
|
||
|
const spawn = require('child_process').spawn;
|
||
|
|
||
|
const proc = spawn(process.execPath, ['debug', 'foo']);
|
||
|
proc.stdout.setEncoding('utf8');
|
||
|
|
||
|
proc.stdout.once('data', common.mustCall((data) => {
|
||
|
assert.strictEqual(data, 'debug> ');
|
||
|
proc.kill();
|
||
|
}));
|