(label: string, startedAt: number)
| 334 | const now = () => performance.now() |
| 335 | const start = now() |
| 336 | const mark = (label: string, startedAt: number) => { |
| 337 | timings.push([label, now() - startedAt]) |
| 338 | } |
| 339 | const logTimings = () => { |
| 340 | if (!envBoolean('E2E_TIMINGS', true)) { |
| 341 | return |
no test coverage detected