(runId: string)
| 90 | } |
| 91 | |
| 92 | function runStartedChunk(runId: string) { |
| 93 | return { |
| 94 | type: EventType.RUN_STARTED, |
| 95 | runId, |
| 96 | threadId: 'thread-1', |
| 97 | timestamp: Date.now(), |
| 98 | } satisfies StreamChunk |
| 99 | } |
| 100 | |
| 101 | function runFinishedChunk(runId: string) { |
| 102 | return { |
no test coverage detected