@practica/create-node-app
Version:
Create Node.js app that is packed with best practices AND strive for simplicity
34 lines (33 loc) • 1.46 kB
JavaScript
;
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
const sinon_1 = __importDefault(require("sinon"));
const index_1 = require("../index");
describe('request-context', () => {
test('When instantiating a new context with initial values, then should get back the context', () => {
const getCurrentRequestContext = sinon_1.default.spy(() => (0, index_1.context)().getStore());
const initialContext = { requestId: 'a' };
(0, index_1.context)().run({ ...initialContext }, getCurrentRequestContext);
expect({
getStoreSpyReturnValue: getCurrentRequestContext.returnValues[0],
}).toEqual({
getStoreSpyReturnValue: initialContext,
});
});
test('When instantiating a new context and putting a key, then get back the key value', () => {
const getCurrentRequestContext = sinon_1.default.spy(() => (0, index_1.context)().getStore());
(0, index_1.context)().run({}, () => {
(0, index_1.context)().getStore().requestId = 'a';
getCurrentRequestContext();
});
expect({
getStoreSpyReturnValue: getCurrentRequestContext.returnValues[0],
}).toEqual({
getStoreSpyReturnValue: {
requestId: 'a',
},
});
});
});