summaryrefslogtreecommitdiff
path: root/test/parallel/test-timers-immediate.js
blob: 11702cdef9da76810f57697a28497d12ffdcae85 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
'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(common.mustNotCall());

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;