(fromPath: string, toPath: string)
| 825 | } |
| 826 | |
| 827 | async function copyIfExists(fromPath: string, toPath: string) { |
| 828 | try { |
| 829 | await access(fromPath) |
| 830 | await copyFile(fromPath, toPath) |
| 831 | } catch { |
| 832 | // Ignore missing optional traces. |
| 833 | } |
| 834 | } |
| 835 | |
| 836 | function printFullResults(results: FullRunResult[]) { |
| 837 | console.log('\nFULL APP-RENDER BENCHMARKS (end-to-end request path)') |
no test coverage detected