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