We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d72bb1e commit 1e98d90Copy full SHA for 1e98d90
test/parallel/test-debug-brk.js
@@ -0,0 +1,9 @@
1
+'use strict';
2
+
3
+const common = require('../common');
4
+const assert = require('assert');
5
+const spawnSync = require('child_process').spawnSync;
6
7
+const args = [`--debug-brk=${common.PORT}`, `-e`, `0`];
8
+const proc = spawnSync(process.execPath, args, {encoding: 'utf8'});
9
+assert(/Debugger listening on/.test(proc.stderr));
0 commit comments