summaryrefslogtreecommitdiff
path: root/test/sequential/test-debugger-debug-brk.js
blob: 086ee2788dee1cd960dc8ba8ca482f12b8fe21e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
'use strict';
const common = require('../common');
common.skipIfInspectorDisabled();

// This test ensures that the debug-brk flag will spin up a new process and
// wait, rather than exit.

const assert = require('assert');
const fixtures = require('../common/fixtures');
const spawn = require('child_process').spawn;

// file name here doesn't actually matter since
// debugger will connect regardless of file name arg
const script = fixtures.path('empty.js');

function test(arg) {
  const child = spawn(process.execPath, ['--inspect', arg, script]);
  const argStr = child.spawnargs.join(' ');
  const fail = () => assert.fail(true, false, `'${argStr}' should not quit`);
  child.on('exit', fail);

  // give node time to start up the debugger
  setTimeout(function() {
    child.removeListener('exit', fail);
    child.kill();
  }, 2000);

  process.on('exit', function() {
    assert(child.killed);
  });
}

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