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.

43 lines
737 B

'use strict';
require('../common');
const assert = require('assert');
const implementations = [
function(fn) {
Promise.resolve().then(fn);
}
];
let expected = 0;
let done = 0;
process.on('exit', function() {
assert.strictEqual(done, expected);
});
function test(scheduleMicrotask) {
let nextTickCalled = false;
expected++;
scheduleMicrotask(function() {
process.nextTick(function() {
nextTickCalled = true;
});
setTimeout(function() {
assert(nextTickCalled);
done++;
}, 0);
});
}
// first tick case
implementations.forEach(test);
// tick callback case
setTimeout(function() {
implementations.forEach(function(impl) {
process.nextTick(test.bind(null, impl));
});
}, 0);