()
| 337 | timings.push([label, now() - startedAt]) |
| 338 | } |
| 339 | const logTimings = () => { |
| 340 | if (!envBoolean('E2E_TIMINGS', true)) { |
| 341 | return |
| 342 | } |
| 343 | |
| 344 | const totalMs = now() - start |
| 345 | const summary = timings.map(([label, ms]) => `${label}=${Math.round(ms)}ms`).join(' | ') |
| 346 | console.log(`[e2e:timing] ${options.appName} :: ${summary} | total=${Math.round(totalMs)}ms`) |
| 347 | } |
| 348 | |
| 349 | const rootDir = await mkdtemp(join(tmpdir(), 'tanstack-cli-e2e-')) |
| 350 | const { |
no test coverage detected