summaryrefslogtreecommitdiff
path: root/test/parallel/test-domain-no-error-handler-abort-on-uncaught-3.js
blob: cbe5f3ed8dc4a1b4357da8d7031e76d60ff5e5a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
'use strict';

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

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

  d.run(function() {
    setImmediate(function() {
      throw new Error('boom!');
    });
  });
}

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