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.
37 lines
581 B
37 lines
581 B
var common = require('../common');
|
|
var assert = require('assert');
|
|
|
|
function enqueueMicrotask(fn) {
|
|
Promise.resolve().then(fn);
|
|
}
|
|
|
|
var done = 0;
|
|
|
|
process.on('exit', function() {
|
|
assert.equal(done, 2);
|
|
});
|
|
|
|
// no nextTick, microtask
|
|
setTimeout(function() {
|
|
enqueueMicrotask(function() {
|
|
done++;
|
|
});
|
|
}, 0);
|
|
|
|
|
|
// no nextTick, microtask with nextTick
|
|
setTimeout(function() {
|
|
var called = false;
|
|
|
|
enqueueMicrotask(function() {
|
|
process.nextTick(function() {
|
|
called = true;
|
|
});
|
|
});
|
|
|
|
setTimeout(function() {
|
|
if (called)
|
|
done++;
|
|
}, 0);
|
|
|
|
}, 0);
|
|
|