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.
23 lines
604 B
23 lines
604 B
'use strict';
|
|
const common = require('../common');
|
|
|
|
// This test ensures that if an Immediate callback clears subsequent
|
|
// immediates we don't get stuck in an infinite loop.
|
|
//
|
|
// If the process does get stuck, it will be timed out by the test
|
|
// runner.
|
|
//
|
|
// Ref: https://github.com/nodejs/node/issues/9756
|
|
|
|
setImmediate(common.mustCall(function() {
|
|
clearImmediate(i2);
|
|
clearImmediate(i3);
|
|
}));
|
|
|
|
const i2 = setImmediate(function() {
|
|
common.fail('immediate callback should not have fired');
|
|
});
|
|
|
|
const i3 = setImmediate(function() {
|
|
common.fail('immediate callback should not have fired');
|
|
});
|
|
|