mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
330f25ef82
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>
27 lines
586 B
JavaScript
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;
|
|
}));
|
|
}));
|
|
}
|