mirror of
https://github.com/nodejs/node.git
synced 2024-11-28 22:46:31 +01:00
3e1b1dd4a9
The copyright and license notice is already in the LICENSE file. There is no justifiable reason to also require that it be included in every file, since the individual files are not individually distributed except as part of the entire package.
15 lines
379 B
JavaScript
15 lines
379 B
JavaScript
// Make sure the domain stack doesn't get clobbered by un-matched .exit()
|
|
|
|
var assert = require('assert');
|
|
var domain = require('domain');
|
|
|
|
var a = domain.create();
|
|
var b = domain.create();
|
|
|
|
a.enter(); // push
|
|
b.enter(); // push
|
|
assert.deepEqual(domain._stack, [a, b], 'b not pushed');
|
|
|
|
domain.create().exit(); // no-op
|
|
assert.deepEqual(domain._stack, [a, b], 'stack mangled!');
|