(cwd: string, fn: () => T)
| 10 | * agents to each see their own working directory without affecting each other. |
| 11 | */ |
| 12 | export function runWithCwdOverride<T>(cwd: string, fn: () => T): T { |
| 13 | return cwdOverrideStorage.run(cwd, fn) |
| 14 | } |
| 15 | |
| 16 | /** |
| 17 | * Get the current working directory |
no test coverage detected