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.
31 lines
852 B
31 lines
852 B
'use strict';
|
|
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const domain = require('domain');
|
|
const fs = require('fs');
|
|
|
|
{
|
|
const d = new domain.Domain();
|
|
|
|
d.on('error', common.mustCall((err) => {
|
|
assert.strictEqual(err.message, 'foobar');
|
|
assert.strictEqual(err.domain, d);
|
|
assert.strictEqual(err.domainEmitter, undefined);
|
|
assert.strictEqual(err.domainBound, undefined);
|
|
assert.strictEqual(err.domainThrown, true);
|
|
}));
|
|
|
|
d.run(common.mustCall(() => {
|
|
process.nextTick(common.mustCall(() => {
|
|
const i = setInterval(common.mustCall(() => {
|
|
clearInterval(i);
|
|
setTimeout(common.mustCall(() => {
|
|
fs.stat('this file does not exist', common.mustCall((er, stat) => {
|
|
throw new Error('foobar');
|
|
}));
|
|
}), 1);
|
|
}), 1);
|
|
}));
|
|
}));
|
|
}
|
|
|