summaryrefslogtreecommitdiff
path: root/test/parallel/test-domain-no-error-handler-abort-on-uncaught-8.js
blob: f1670cbd300bdf3de0003267e5a7d526781bba1b (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
'use strict';

const common = require('../common');
const domain = require('domain');

function test() {
  const d = domain.create();
  const d2 = domain.create();

  d.on('error', function errorHandler() {
  });

  d.run(function() {
    d2.run(function() {
      process.nextTick(function() {
        throw new Error('boom!');
      });
    });
  });
}

if (process.argv[2] === 'child') {
  test();
} else {
  common.childShouldThrowAndAbort();
}