0
0
mirror of https://github.com/nodejs/node.git synced 2024-12-01 16:10:02 +01:00
nodejs/test/parallel/test-microtask-queue-run-immediate-domain.js
Gibson Fahnestock 3d2aef3979 test: s/assert.equal/assert.strictEqual/
Use assert.strictEqual instead of assert.equal in tests, manually
convert types where necessary.

PR-URL: https://github.com/nodejs/node/pull/10698
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Teddy Katz <teddy.katz@gmail.com>
2017-01-11 14:19:26 +00:00

46 lines
933 B
JavaScript

'use strict';
require('../common');
const assert = require('assert');
// Requiring the domain module here changes the function that is used by node to
// call process.nextTick's callbacks to a variant that specifically handles
// domains. We want to test this specific variant in this test, and so even if
// the domain module is not used, this require call is needed and must not be
// removed.
require('domain');
function enqueueMicrotask(fn) {
Promise.resolve().then(fn);
}
let done = 0;
process.on('exit', function() {
assert.strictEqual(done, 2);
});
// no nextTick, microtask
setImmediate(function() {
enqueueMicrotask(function() {
done++;
});
});
// no nextTick, microtask with nextTick
setImmediate(function() {
let called = false;
enqueueMicrotask(function() {
process.nextTick(function() {
called = true;
});
});
setImmediate(function() {
if (called)
done++;
});
});