summaryrefslogtreecommitdiff
path: root/test/parallel/test-repl-uncaught-exception-standalone.js
blob: ae7b214fefae9e3ece88b2ae56435a3bc4b70708 (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
'use strict';
const common = require('../common');
const assert = require('assert');
const cp = require('child_process');
const child = cp.spawn(process.execPath, ['-i']);
let output = '';

child.stdout.setEncoding('utf8');
child.stdout.on('data', (data) => {
  output += data;
});

child.on('exit', common.mustCall(() => {
  const results = output.split('\n');
  results.shift();
  assert.deepStrictEqual(
    results,
    [
      'Type ".help" for more information.',
      // x\n
      '> Thrown:',
      'ReferenceError: x is not defined',
      // Added `uncaughtException` listener.
      '> short',
      'undefined',
      // x\n
      '> Foobar',
      '> '
    ]
  );
}));

child.stdin.write('x\n');
child.stdin.write(
  'process.on("uncaughtException", () => console.log("Foobar"));' +
  'console.log("short")\n');
child.stdin.write('x\n');
child.stdin.end();