(runId: string)
| 54 | } |
| 55 | |
| 56 | getEvents(runId: string): TraceEvent[] { |
| 57 | if (!this.bufferEnabled || !this.eventsByRun) { |
| 58 | return []; |
| 59 | } |
| 60 | return this.eventsByRun.get(runId) ?? []; |
| 61 | } |
| 62 | |
| 63 | clear(): void { |
| 64 | if (this.eventsByRun) { |
no test coverage detected