(event: ReplayTestResult)
| 251 | } |
| 252 | |
| 253 | function isReplayTestCompletionProgressEvent(event: ReplayTestResult): boolean { |
| 254 | return ( |
| 255 | event.status === 'pass' || |
| 256 | event.status === 'skip' || |
| 257 | (event.status === 'fail' && !event.retrying) |
| 258 | ); |
| 259 | } |
| 260 | |
| 261 | function replayTestCompletionProgressKey(event: ReplayTestResult): string { |
| 262 | const shard = typeof event.shardIndex === 'number' ? event.shardIndex : ''; |
no outgoing calls
no test coverage detected
searching dependent graphs…