(content: string, run: (sessionsDir: string) => void)
| 43 | } |
| 44 | |
| 45 | function withCodexRawFile(content: string, run: (sessionsDir: string) => void): void { |
| 46 | withCodexRoot((sessionsDir) => { |
| 47 | writeCodexFixture(sessionsDir, '2025/06/15/rollout-2025-06-15-test.jsonl', content); |
| 48 | run(sessionsDir); |
| 49 | }); |
| 50 | } |
| 51 | |
| 52 | function withCodexFiles(files: CodexFixture[], run: (sessionsDir: string) => void): void { |
| 53 | withCodexRoot((sessionsDir) => { |
no test coverage detected