()
| 61 | * Stop the test proxy and clear the cached handle. |
| 62 | */ |
| 63 | export async function stopTestProxy(): Promise<void> { |
| 64 | if (!proxyHandle) return; |
| 65 | await proxyHandle.close(); |
| 66 | proxyHandle = undefined; |
| 67 | } |
| 68 | |
| 69 | /** |
| 70 | * Get the base URL of the running test proxy (e.g. http://127.0.0.1:8402). |
no test coverage detected