(mockResponse?: Partial<Response>)
| 284 | } |
| 285 | |
| 286 | function getGlobalFetchMock(mockResponse?: Partial<Response>): typeof fetch { |
| 287 | return createGlobalFetchMock(mockResponse); |
| 288 | } |
| 289 | |
| 290 | function setupGlobalFetchMock(): MockFetch { |
| 291 | const mockFetch = getGlobalFetchMock(); |
no test coverage detected