moleculer-iam
Version:
Centralized IAM module for moleculer. Including a certified OIDC provider and an Identity provider for user profile, credentials, and custom claims management. Custom claims could be defined/updated by declarative schema which contains claims validation a
13 lines • 420 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const iam_1 = require("./iam");
jest.setTimeout(1000 * 30);
describe("Test 'IAM'", () => {
afterAll(() => iam_1.broker.stop());
describe("Simple working test", () => {
it("started well", () => {
return expect(iam_1.broker.start()).resolves.not.toThrow();
});
});
});
//# sourceMappingURL=iam.spec.js.map