summaryrefslogtreecommitdiff
path: root/deps/node/deps/node-inspect/test/cli/scripts.test.js
blob: 1546b8045baa56d88c8cbff5a9173e29d1fa7a1d (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
43
'use strict';
const Path = require('path');

const { test } = require('tap');

const startCLI = require('./start-cli');

test('list scripts', (t) => {
  const script = Path.join('examples', 'three-lines.js');
  const cli = startCLI([script]);

  function onFatal(error) {
    cli.quit();
    throw error;
  }

  return cli.waitForInitialBreak()
    .then(() => cli.waitForPrompt())
    .then(() => cli.command('scripts'))
    .then(() => {
      t.match(
        cli.output,
        /^\* \d+: examples(?:\/|\\)three-lines\.js/,
        'lists the user script');
      t.notMatch(
        cli.output,
        /\d+: module\.js <native>/,
        'omits node-internal scripts');
    })
    .then(() => cli.command('scripts(true)'))
    .then(() => {
      t.match(
        cli.output,
        /\* \d+: examples(?:\/|\\)three-lines\.js/,
        'lists the user script');
      t.match(
        cli.output,
        /\d+: module\.js <native>/,
        'includes node-internal scripts');
    })
    .then(() => cli.quit())
    .then(null, onFatal);
});