/**
 * 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;
