mirror of
https://github.com/denoland/deno.git
synced 2025-07-07 21:35:07 +00:00
23 lines
763 B
JavaScript
23 lines
763 B
JavaScript
// deno-fmt-ignore-file
|
|
// deno-lint-ignore-file
|
|
|
|
// Copyright Joyent and Node contributors. All rights reserved. MIT license.
|
|
// Taken from Node 23.9.0
|
|
// This file is automatically generated by `tests/node_compat/runner/setup.ts`. Do not modify this file manually.
|
|
|
|
'use strict';
|
|
|
|
const common = require('../common');
|
|
const { strictEqual } = require('assert');
|
|
const { AsyncLocalStorage } = require('async_hooks');
|
|
|
|
const asyncLocalStorage = new AsyncLocalStorage();
|
|
const runInAsyncScope =
|
|
asyncLocalStorage.run(123, common.mustCall(() => AsyncLocalStorage.snapshot()));
|
|
const result =
|
|
asyncLocalStorage.run(321, common.mustCall(() => {
|
|
return runInAsyncScope(() => {
|
|
return asyncLocalStorage.getStore();
|
|
});
|
|
}));
|
|
strictEqual(result, 123);
|