123456789101112131415161718 |
- '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");
- });
- });
|