Skip to content

Commit

Permalink
test: add test for debug usage message
Browse files Browse the repository at this point in the history
PR-URL: #8061
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: cjihrig - Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
  • Loading branch information
Trott authored and MylesBorins committed Oct 26, 2016
1 parent ce2cfbd commit dc7bc2e
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions test/parallel/test-debug-usage.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
'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>
`;
var 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);
}));

0 comments on commit dc7bc2e

Please sign in to comment.