summaryrefslogtreecommitdiff
path: root/test/sequential/test-debugger-debug-brk.js
blob: 7a13572a06a2a50ad3acd9430ceda072d2d55706 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
'use strict';
const common = require('../common');
common.skipIfInspectorDisabled();

// This test ensures that the --debug-brk flag will exit the process
const assert = require('assert');
const fixtures = require('../common/fixtures');
const { spawnSync } = require('child_process');

// File name here doesn't actually matter the process will exit on start.
const script = fixtures.path('empty.js');

function test(arg) {
  const child = spawnSync(process.execPath, ['--inspect', arg, script]);
  const stderr = child.stderr.toString();
  assert(stderr.includes('DEP0062'));
  assert.strictEqual(child.status, 9);
}

test('--debug-brk');
test('--debug-brk=5959');