21 lines
328 B
JavaScript
21 lines
328 B
JavaScript
'use strict';
|
|
|
|
const common = require('../common');
|
|
const domain = require('domain');
|
|
|
|
function test() {
|
|
const d = domain.create();
|
|
|
|
d.run(function() {
|
|
setImmediate(function() {
|
|
throw new Error('boom!');
|
|
});
|
|
});
|
|
}
|
|
|
|
if (process.argv[2] === 'child') {
|
|
test();
|
|
} else {
|
|
common.childShouldThrowAndAbort();
|
|
}
|