Skip to content
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');
Comment thread
addaleax marked this conversation as resolved.
clearImmediate(immediate);
}

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