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: als variant of test-timers-clearImmediate #32303

Closed
wants to merge 3 commits into from
Closed
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions test/parallel/test-timers-clearImmediate-als.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
'use strict';
const common = require('../common');
const { AsyncLocalStorage } = require('async_hooks');

// This is an asynclocalstorage variant of test-timers-clearImmediate.js
const asyncLocalStorage = new AsyncLocalStorage();
const N = 3;

function next() {
const fn = common.mustCall(onImmediate);
asyncLocalStorage.run(new Map(), common.mustCall(() => {
const immediate = setImmediate(fn);
const store = asyncLocalStorage.getStore();
store.set('immediate', immediate);
}));
}

function onImmediate() {
const store = asyncLocalStorage.getStore();
const immediate = store.get('immediate');
addaleax marked this conversation as resolved.
Show resolved Hide resolved
clearImmediate(immediate);
}

for (let i = 0; i < N; i++) {
next();
}