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.

32 lines
535 B

14 years ago
var common = require('../common');
var assert = require('assert');
var complete = 0;
14 years ago
process.nextTick(function() {
complete++;
14 years ago
process.nextTick(function() {
complete++;
14 years ago
process.nextTick(function() {
complete++;
});
});
});
14 years ago
setTimeout(function() {
process.nextTick(function() {
complete++;
});
}, 50);
14 years ago
process.nextTick(function() {
complete++;
});
process.on('exit', function() {
assert.equal(5, complete);
process.nextTick(function() {
throw new Error('this should not occur');
});
});