UNPKG

@ithena-one/mcp-governance

Version:

Governance layer (Identity, RBAC, Credentials, Audit, Logging, Tracing) for Model Context Protocol (MCP) servers.

15 lines 704 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.LifecycleManager = exports.mockLifecycleManagerInstance = void 0; /* eslint-disable @typescript-eslint/no-explicit-any */ // src/core/__mocks__/lifecycle-manager.ts const globals_1 = require("@jest/globals"); exports.mockLifecycleManagerInstance = { initialize: globals_1.jest.fn().mockResolvedValue([]), shutdown: globals_1.jest.fn().mockResolvedValue(undefined), getInitializedComponents: globals_1.jest.fn().mockReturnValue([]), }; exports.LifecycleManager = globals_1.jest.fn().mockImplementation(() => { return exports.mockLifecycleManagerInstance; }); //# sourceMappingURL=lifecycle-manager.js.map