0
0
mirror of https://github.com/nodejs/node.git synced 2024-12-01 16:10:02 +01:00
nodejs/test/parallel/test-domain-nested.js

23 lines
539 B
JavaScript
Raw Normal View History

'use strict';
// Make sure that the nested domains don't cause the domain stack to grow
require('../common');
var assert = require('assert');
var domain = require('domain');
process.on('exit', function(c) {
assert.equal(domain._stack.length, 0);
});
domain.create().run(function() {
domain.create().run(function() {
domain.create().run(function() {
domain.create().on('error', function(e) {
// Don't need to do anything here
}).run(function() {
throw new Error('died');
});
});
});
});