()
| 50 | */ |
| 51 | let _taskOutputDir: string | undefined |
| 52 | export function getTaskOutputDir(): string { |
| 53 | if (_taskOutputDir === undefined) { |
| 54 | _taskOutputDir = join(getProjectTempDir(), getSessionId(), 'tasks') |
| 55 | } |
| 56 | return _taskOutputDir |
| 57 | } |
| 58 | |
| 59 | /** Test helper — clears the memoized dir. */ |
| 60 | export function _resetTaskOutputDirForTest(): void { |
no test coverage detected