Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test: work scheduled in process.nextTick can keep the event loop alive #43787

Merged
merged 4 commits into from Jul 24, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
13 changes: 11 additions & 2 deletions test/parallel/test-process-beforeexit.js
Expand Up @@ -59,13 +59,22 @@ function tryRepeatedTimer() {
if (++n < N)
setTimeout(repeatedTimer, 1);
else // n == N
process.once('beforeExit', common.mustCall(tryNextTick));
process.once('beforeExit', common.mustCall(tryNextTick1));
andreubotella marked this conversation as resolved.
Show resolved Hide resolved
}, N);
setTimeout(repeatedTimer, 1);
}

// Test if the callback of `process.nextTick` can be invoked.
function tryNextTick() {
function tryNextTick1() {
andreubotella marked this conversation as resolved.
Show resolved Hide resolved
process.nextTick(common.mustCall(function() {
setTimeout(common.mustCall(() => {
process.once('beforeExit', common.mustCall(tryNextTick2));
}), 0);
andreubotella marked this conversation as resolved.
Show resolved Hide resolved
}));
}

// Test that `process.nextTick` won't keep the event loop running by itself.
function tryNextTick2() {
andreubotella marked this conversation as resolved.
Show resolved Hide resolved
process.nextTick(common.mustCall(function() {
process.once('beforeExit', common.mustNotCall());
}));
Expand Down