(captureId: string)
| 41 | } |
| 42 | |
| 43 | export function resetPhaseCapture(captureId: string): void { |
| 44 | captures.set(captureId, { |
| 45 | phases: [], |
| 46 | onFinishCount: 0, |
| 47 | yieldedChunks: [], |
| 48 | }) |
| 49 | } |
| 50 | |
| 51 | export function getPhaseCapture(captureId: string): PhaseCapture { |
| 52 | return bucketFor(captureId) |
no test coverage detected