summaryrefslogtreecommitdiff
path: root/test/parallel/test-events-uncaught-exception-stack.js
blob: c55322a5aa56c4ca240ad363574687a0eb498831 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
'use strict';
const common = require('../common');
const assert = require('assert');
const EventEmitter = require('events');

// Tests that the error stack where the exception was thrown is *not* appended.

process.on('uncaughtException', common.mustCall((err) => {
  const lines = err.stack.split('\n');
  assert.strictEqual(lines[0], 'Error');
  lines.slice(1).forEach((line) => {
    assert(/^    at/.test(line), `${line} has an unexpected format`);
  });
}));

new EventEmitter().emit('error', new Error());