(fn: () => T)
| 225 | } |
| 226 | |
| 227 | const wrapWithCwd = <T>(fn: () => T): T => |
| 228 | resumedWorktreePath ? runWithCwdOverride(resumedWorktreePath, fn) : fn() |
| 229 | |
| 230 | void runWithAgentContext(asyncAgentContext, () => |
| 231 | wrapWithCwd(() => |
no test coverage detected