summaryrefslogtreecommitdiff
path: root/test/parallel/test-unhandled-exception-rethrow-error.js
blob: 883351e2a4bf724537b6f8b2ba54956804a0c915 (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
'use strict';
require('../common');

if (process.argv[2] === 'child') {
  process.on('uncaughtException', (err) => {
    err.rethrow = true;
    throw err;
  });

  function throwException() {
    throw new Error('boom');
  }

  throwException();
} else {
  const assert = require('assert');
  const { spawnSync } = require('child_process');
  const result = spawnSync(process.execPath, [__filename, 'child']);

  assert.strictEqual(result.status, 7);
  assert.strictEqual(result.signal, null);
  assert.strictEqual(result.stdout.toString().trim(), '');
  // Verify that the error was thrown and that the stack was preserved.
  const stderr = result.stderr.toString();
  assert.match(stderr, /Error: boom/);
  assert.match(stderr, /at throwException/);
  assert.match(stderr, /rethrow: true/);
}