(summary)
| 73 | } |
| 74 | |
| 75 | function getAutoRunRoundRetryCount(summary) { |
| 76 | return Math.max(0, Number(summary?.attempts || 0) - 1); |
| 77 | } |
| 78 | |
| 79 | function formatAutoRunFailureReasons(reasons = []) { |
| 80 | if (!Array.isArray(reasons) || !reasons.length) { |
no outgoing calls
no test coverage detected