mirror of
https://github.com/nodejs/node.git
synced 2025-05-06 23:10:15 +00:00

Manually fix issues that eslint --fix couldn't do automatically. PR-URL: https://github.com/nodejs/node/pull/10685 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Roman Reiss <me@silverwind.io>
33 lines
745 B
JavaScript
33 lines
745 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
|
|
let immediateC;
|
|
let immediateD;
|
|
|
|
let mainFinished = false;
|
|
|
|
setImmediate(common.mustCall(function() {
|
|
assert.strictEqual(mainFinished, true);
|
|
clearImmediate(immediateB);
|
|
}));
|
|
|
|
const 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;
|