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

10 lines (9 loc) 227 B
"use strict"; /** * Jest setup file for global test configuration */ // Mock global fetch for all tests const mockFetch = jest.fn(); global.fetch = mockFetch; // Export the mock for use in tests global.mockFetch = mockFetch;