UNPKG

@yeepay/awesome-components-mcp

Version:

MCP server providing access to awesome-components documentation and integration guides with dual-mode operation: direct fetch and GitLab MCP instruction generation

11 lines (8 loc) 233 B
/** * Jest setup file for global test configuration */ // Mock global fetch for all tests const mockFetch = jest.fn(); (global as any).fetch = mockFetch; // Export the mock for use in tests (global as any).mockFetch = mockFetch;