• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1'use strict';
2const common = require('../common');
3common.skipIfInspectorDisabled();
4
5// This test ensures that the --debug-brk flag will exit the process
6const assert = require('assert');
7const fixtures = require('../common/fixtures');
8const { spawnSync } = require('child_process');
9
10// File name here doesn't actually matter the process will exit on start.
11const script = fixtures.path('empty.js');
12
13function test(arg) {
14  const child = spawnSync(process.execPath, ['--inspect', arg, script]);
15  const stderr = child.stderr.toString();
16  assert(stderr.includes('DEP0062'));
17  assert.strictEqual(child.status, 9);
18}
19
20test('--debug-brk');
21test('--debug-brk=5959');
22