()
| 133 | ] as const; |
| 134 | |
| 135 | export function clearProxyEnv(): void { |
| 136 | for (const key of PROXY_ENV_KEYS) { |
| 137 | Reflect.deleteProperty(process.env, key); |
| 138 | } |
| 139 | } |
| 140 | |
| 141 | export function mockGlobal<T>(name: string, value: T): () => void { |
| 142 | const descriptor = Object.getOwnPropertyDescriptor(globalThis, name); |
no outgoing calls
no test coverage detected
searching dependent graphs…