2016-01-12 17:48:58 -08:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
const common = require('../common');
|
|
|
|
const domain = require('domain');
|
|
|
|
const assert = require('assert');
|
|
|
|
|
|
|
|
const d = domain.create();
|
|
|
|
|
|
|
|
process.on('uncaughtException', common.mustCall(function onUncaught() {
|
2016-12-01 11:13:29 -06:00
|
|
|
assert.strictEqual(process.domain, null,
|
|
|
|
'domains stack should be empty in uncaughtException' +
|
|
|
|
' handler');
|
2016-01-12 17:48:58 -08:00
|
|
|
}));
|
|
|
|
|
|
|
|
process.on('beforeExit', common.mustCall(function onBeforeExit() {
|
2016-12-01 11:13:29 -06:00
|
|
|
assert.strictEqual(process.domain, null,
|
|
|
|
'domains stack should be empty in beforeExit handler');
|
2016-01-12 17:48:58 -08:00
|
|
|
}));
|
|
|
|
|
|
|
|
d.run(function() {
|
|
|
|
throw new Error('boom');
|
|
|
|
});
|