@ithena-one/mcp-governance
Version:
Governance layer (Identity, RBAC, Credentials, Audit, Logging, Tracing) for Model Context Protocol (MCP) servers.
12 lines • 509 B
JavaScript
/* eslint-disable @typescript-eslint/no-explicit-any */
// src/core/__mocks__/lifecycle-manager.ts
import { jest } from '@jest/globals';
export const mockLifecycleManagerInstance = {
initialize: jest.fn().mockResolvedValue([]),
shutdown: jest.fn().mockResolvedValue(undefined),
getInitializedComponents: jest.fn().mockReturnValue([]),
};
export const LifecycleManager = jest.fn().mockImplementation(() => {
return mockLifecycleManagerInstance;
});
//# sourceMappingURL=lifecycle-manager.js.map