mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
4f3cf4e89a
PR-URL: https://github.com/nodejs/node/pull/51915 Reviewed-By: Yagiz Nizipli <yagiz.nizipli@sentry.io> Reviewed-By: Gerhard Stöbich <deb2001-github@yahoo.de> Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
22 lines
577 B
JavaScript
22 lines
577 B
JavaScript
'use strict';
|
|
|
|
const common = require('../common');
|
|
const { AsyncLocalStorage } = require('async_hooks');
|
|
const dc = require('diagnostics_channel');
|
|
const assert = require('assert');
|
|
|
|
const channel = dc.tracingChannel('test');
|
|
const store = new AsyncLocalStorage();
|
|
|
|
const context = { foo: 'bar' };
|
|
|
|
channel.start.bindStore(store, common.mustCall(() => {
|
|
return context;
|
|
}));
|
|
|
|
assert.strictEqual(store.getStore(), undefined);
|
|
channel.traceSync(common.mustCall(() => {
|
|
assert.deepStrictEqual(store.getStore(), context);
|
|
}));
|
|
assert.strictEqual(store.getStore(), undefined);
|