(result, name)
| 494 | } |
| 495 | |
| 496 | function performanceMetricValue(result, name) { |
| 497 | const metric = result.metrics?.find((entry) => entry.name === name) |
| 498 | return typeof metric?.value === 'number' ? metric.value : 0 |
| 499 | } |
| 500 | |
| 501 | function summarizePerformanceMetrics(result) { |
| 502 | return { |
no outgoing calls
no test coverage detected