(...req: Parameters<Fetch>)
| 41 | // By wrapping fetch in an anonymous function, we ensure we always access the current version |
| 42 | // of fetch through closure, allowing MSW to properly intercept and handle requests during tests. |
| 43 | const globalFetch = (...req: Parameters<Fetch>) => fetch(...req); |
| 44 | |
| 45 | function buildConsoleVersionHeaders( |
| 46 | currentConsoleVersion: string, |
no test coverage detected