(result)
| 499 | } |
| 500 | |
| 501 | function summarizePerformanceMetrics(result) { |
| 502 | return { |
| 503 | jsHeapUsedMB: round(performanceMetricValue(result, 'JSHeapUsedSize') / (1024 * 1024)), |
| 504 | jsHeapTotalMB: round(performanceMetricValue(result, 'JSHeapTotalSize') / (1024 * 1024)), |
| 505 | domNodes: Math.round(performanceMetricValue(result, 'Nodes')), |
| 506 | documents: Math.round(performanceMetricValue(result, 'Documents')), |
| 507 | eventListeners: Math.round(performanceMetricValue(result, 'JSEventListeners')) |
| 508 | } |
| 509 | } |
| 510 | |
| 511 | function scriptNameFromUrl(rawUrl) { |
| 512 | try { |
no test coverage detected