node/test/parallel/test-domain-multiple-errors.js
Rich Trott 330f25ef82 test: prepare for consistent comma-dangle lint rule
Make changes so that tests will pass when the comma-dangle settings
applied to the rest of the code base are also applied to tests.

PR-URL: https://github.com/nodejs/node/pull/37930
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Derek Lewis <DerekNonGeneric@inf.is>
2021-04-01 23:14:29 -07:00

27 lines
586 B
JavaScript

'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;
}));
}));
}