API/api.medcify.app/node_modules/continuation-local-storage/test/async-context.tap.js
2022-09-26 11:41:44 +05:30

19 lines
504 B
JavaScript

'use strict';
var tap = require('tap')
, test = tap.test
, createNamespace = require('../context.js').createNamespace
;
test("asynchronously propagating state with local-context-domains", function (t) {
t.plan(2);
var namespace = createNamespace('namespace');
t.ok(process.namespaces.namespace, "namespace has been created");
namespace.run(function () {
namespace.set('test', 1337);
t.equal(namespace.get('test'), 1337, "namespace is working");
});
});