test: add regression test for --debug-brk -e 0
Check that `node --debug-brk -e 0` immediately quits. PR-URL: https://github.com/nodejs/node/pull/3585 Reviewed-By: Evan Lucas <evanlucas@me.com> Reviewed-By: James M Snell <jasnell@gmail.com>
This commit is contained in:
parent
9b024422cd
commit
810cc05116
9
test/parallel/test-debug-brk.js
Normal file
9
test/parallel/test-debug-brk.js
Normal file
@ -0,0 +1,9 @@
|
||||
'use strict';
|
||||
|
||||
const common = require('../common');
|
||||
const assert = require('assert');
|
||||
const spawnSync = require('child_process').spawnSync;
|
||||
|
||||
const args = [`--debug-brk=${common.PORT}`, `-e`, `0`];
|
||||
const proc = spawnSync(process.execPath, args, {encoding: 'utf8'});
|
||||
assert(/Debugger listening on/.test(proc.stderr));
|
Loading…
x
Reference in New Issue
Block a user