(result)
| 526 | } |
| 527 | |
| 528 | function summarizePerformanceMetrics(result) { |
| 529 | return { |
| 530 | jsHeapUsedMB: round(performanceMetricValue(result, 'JSHeapUsedSize') / (1024 * 1024)), |
| 531 | jsHeapTotalMB: round(performanceMetricValue(result, 'JSHeapTotalSize') / (1024 * 1024)), |
| 532 | domNodes: Math.round(performanceMetricValue(result, 'Nodes')), |
| 533 | documents: Math.round(performanceMetricValue(result, 'Documents')), |
| 534 | eventListeners: Math.round(performanceMetricValue(result, 'JSEventListeners')) |
| 535 | } |
| 536 | } |
| 537 | |
| 538 | function scriptNameFromUrl(rawUrl) { |
| 539 | try { |
no test coverage detected