summaryrefslogtreecommitdiff
path: root/test/parallel/test-domain-error-types.js
blob: 6569c6de4bf1e171810181b7a7fadb432e4a4205 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
'use strict';

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

// This test is similar to test-domain-multiple-errors, but uses a new domain
// for each errors.

for (const something of [
  42, null, undefined, false, () => {}, 'string', Symbol('foo')
]) {
  const d = new domain.Domain();
  d.run(common.mustCall(() => {
    process.nextTick(common.mustCall(() => {
      throw something;
    }));
  }));

  d.on('error', common.mustCall((err) => {
    assert.strictEqual(something, err);
  }));
}