summaryrefslogtreecommitdiff
path: root/test/parallel/test-debugger-scripts.js
blob: 83f578cf1cabbb7412ac4ab412a09bd065acd38e (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
35
36
37
38
39
40
41
42
'use strict';
const common = require('../common');

common.skipIfInspectorDisabled();

const fixtures = require('../common/fixtures');
const startCLI = require('../common/debugger');

const assert = require('assert');

// List scripts.
{
  const script = fixtures.path('debugger', 'three-lines.js');
  const cli = startCLI(['--port=0', script]);

  (async () => {
    try {
      await cli.waitForInitialBreak();
      await cli.waitForPrompt();
      await cli.command('scripts');
      assert.match(
        cli.output,
        /^\* \d+: \S+debugger(?:\/|\\)three-lines\.js/m,
        'lists the user script');
      assert.doesNotMatch(
        cli.output,
        /\d+: node:internal\/buffer/,
        'omits node-internal scripts');
      await cli.command('scripts(true)');
      assert.match(
        cli.output,
        /\* \d+: \S+debugger(?:\/|\\)three-lines\.js/,
        'lists the user script');
      assert.match(
        cli.output,
        /\d+: node:internal\/buffer/,
        'includes node-internal scripts');
    } finally {
      await cli.quit();
    }
  })().then(common.mustCall());
}