(stepIndex: number)
| 56 | } |
| 57 | |
| 58 | function replayProgressLine(stepIndex: number): string { |
| 59 | return JSON.stringify({ |
| 60 | type: 'progress', |
| 61 | event: { |
| 62 | type: 'replay-test', |
| 63 | file: '/tmp/tab-view-coverflow.yml', |
| 64 | title: 'Tab View - Coverflow', |
| 65 | status: 'progress', |
| 66 | index: 1, |
| 67 | total: 1, |
| 68 | attempt: 1, |
| 69 | maxAttempts: 1, |
| 70 | stepIndex, |
| 71 | stepTotal: 10, |
| 72 | }, |
| 73 | }); |
| 74 | } |
| 75 | |
| 76 | function replayPassLine(): string { |
| 77 | return JSON.stringify({ |
no outgoing calls
no test coverage detected