(round)
| 34 | } = deps; |
| 35 | |
| 36 | function createAutoRunRoundSummary(round) { |
| 37 | return { |
| 38 | round, |
| 39 | status: 'pending', |
| 40 | attempts: 0, |
| 41 | failureReasons: [], |
| 42 | finalFailureReason: '', |
| 43 | }; |
| 44 | } |
| 45 | |
| 46 | function normalizeAutoRunRoundSummary(summary, round) { |
| 47 | const base = createAutoRunRoundSummary(round); |
no outgoing calls
no test coverage detected