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.
29 lines
437 B
29 lines
437 B
15 years ago
|
process.mixin(require("./common"));
|
||
|
|
||
|
var complete = 0;
|
||
|
|
||
|
process.nextTick(function () {
|
||
|
complete++;
|
||
|
process.nextTick(function () {
|
||
|
complete++;
|
||
|
process.nextTick(function () {
|
||
|
complete++;
|
||
|
});
|
||
|
});
|
||
|
});
|
||
|
|
||
|
setTimeout(function () {
|
||
|
process.nextTick(function () {
|
||
|
complete++;
|
||
|
});
|
||
|
}, 50);
|
||
|
|
||
|
process.nextTick(function () {
|
||
|
complete++;
|
||
|
});
|
||
|
|
||
|
|
||
|
process.addListener('exit', function () {
|
||
|
assert.equal(5, complete);
|
||
|
});
|