UNPKG

keycloak-connect-multirealm

Version:

Keycloak Node.js Adapter With Support for multiple realms

17 lines (14 loc) 250 B
const myCache = { 'get': jest.fn(() => { return undefined; // eslint-disable-line no-undefined }), 'set': jest.fn(() => { return true; }), }; class NodeCache { constructor() { return myCache; } } module.exports = NodeCache;