mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
50dd63e8ef
PR-URL: https://github.com/nodejs/node/pull/31950 Reviewed-By: Vladimir de Turckheim <vlad2t@hotmail.com> Reviewed-By: Gerhard Stöbich <deb2001-github@yahoo.de>
16 lines
434 B
JavaScript
16 lines
434 B
JavaScript
'use strict';
|
|
require('../common');
|
|
const assert = require('assert');
|
|
const { AsyncLocalStorage } = require('async_hooks');
|
|
|
|
const asyncLocalStorage = new AsyncLocalStorage();
|
|
|
|
asyncLocalStorage.run('hello node', () => {
|
|
assert.strictEqual(asyncLocalStorage.getStore(), 'hello node');
|
|
});
|
|
|
|
const runStore = { hello: 'node' };
|
|
asyncLocalStorage.run(runStore, () => {
|
|
assert.strictEqual(asyncLocalStorage.getStore(), runStore);
|
|
});
|