mirror of https://github.com/lukechilds/node.git
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.
35 lines
856 B
35 lines
856 B
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const events = require('events');
|
|
const domain = require('domain');
|
|
|
|
{
|
|
const e = new events.EventEmitter();
|
|
const d = domain.create();
|
|
d.add(e);
|
|
d.on('error', common.mustCall(function(er) {
|
|
assert(er instanceof Error, 'error created');
|
|
}));
|
|
e.emit('error');
|
|
}
|
|
|
|
for (const arg of [false, null, undefined]) {
|
|
const e = new events.EventEmitter();
|
|
const d = domain.create();
|
|
d.add(e);
|
|
d.on('error', common.mustCall(function(er) {
|
|
assert(er instanceof Error, 'error created');
|
|
}));
|
|
e.emit('error', arg);
|
|
}
|
|
|
|
for (const arg of [42, 'fortytwo', true]) {
|
|
const e = new events.EventEmitter();
|
|
const d = domain.create();
|
|
d.add(e);
|
|
d.on('error', common.mustCall(function(er) {
|
|
assert.strictEqual(er, arg);
|
|
}));
|
|
e.emit('error', arg);
|
|
}
|
|
|