(turnId: string | undefined)
| 14 | return makeEntry(turnId, 'tool_call'); |
| 15 | } |
| 16 | function msg(turnId: string | undefined): TranscriptEntry { |
| 17 | return makeEntry(turnId, 'assistant'); |
| 18 | } |
| 19 | |
| 20 | describe('groupTurns', () => { |
| 21 | it('groups consecutive entries with the same turnId', () => { |
no test coverage detected