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.
33 lines
755 B
33 lines
755 B
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
|
|
let immediateB;
|
|
let immediateC;
|
|
let immediateD;
|
|
|
|
let mainFinished = false;
|
|
|
|
setImmediate(common.mustCall(function() {
|
|
assert.strictEqual(mainFinished, true);
|
|
clearImmediate(immediateB);
|
|
}));
|
|
|
|
immediateB = setImmediate(function() {
|
|
common.fail('this immediate should not run');
|
|
});
|
|
|
|
setImmediate(function(x, y, z) {
|
|
immediateC = [x, y, z];
|
|
}, 1, 2, 3);
|
|
|
|
setImmediate(function(x, y, z, a, b) {
|
|
immediateD = [x, y, z, a, b];
|
|
}, 1, 2, 3, 4, 5);
|
|
|
|
process.on('exit', function() {
|
|
assert.deepStrictEqual(immediateC, [1, 2, 3], 'immediateC args should match');
|
|
assert.deepStrictEqual(immediateD, [1, 2, 3, 4, 5], '5 args should match');
|
|
});
|
|
|
|
mainFinished = true;
|
|
|