(lines: object[], run: (sessionsDir: string) => void)
| 36 | } |
| 37 | |
| 38 | function withCodexFile(lines: object[], run: (sessionsDir: string) => void): void { |
| 39 | withCodexRoot((sessionsDir) => { |
| 40 | writeCodexFixture(sessionsDir, '2025/06/15/rollout-2025-06-15-test.jsonl', lines); |
| 41 | run(sessionsDir); |
| 42 | }); |
| 43 | } |
| 44 | |
| 45 | function withCodexRawFile(content: string, run: (sessionsDir: string) => void): void { |
| 46 | withCodexRoot((sessionsDir) => { |
no test coverage detected