You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

26 lines
585 B

'use strict';
const common = require('../common');
const assert = require('assert');
const domain = require('domain');
// This test is similar to test-domain-error-types, but uses a single domain
// to emit all errors.
const d = new domain.Domain();
const values = [
42, null, undefined, false, () => {}, 'string', Symbol('foo')
];
d.on('error', common.mustCall((err) => {
assert(values.includes(err));
}, values.length));
for (const something of values) {
d.run(common.mustCall(() => {
process.nextTick(common.mustCall(() => {
throw something;
}));
}));
}