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.
21 lines
603 B
21 lines
603 B
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const spawn = require('child_process').spawn;
|
|
|
|
const child = spawn(process.execPath, ['debug']);
|
|
child.stderr.setEncoding('utf8');
|
|
|
|
const expectedUsageMessage = `Usage: node debug script.js
|
|
node debug <host>:<port>
|
|
node debug -p <pid>
|
|
`;
|
|
let actualUsageMessage = '';
|
|
child.stderr.on('data', function(data) {
|
|
actualUsageMessage += data.toString();
|
|
});
|
|
|
|
child.on('exit', common.mustCall(function(code) {
|
|
assert.strictEqual(code, 1);
|
|
assert.strictEqual(actualUsageMessage, expectedUsageMessage);
|
|
}));
|
|
|