()
| 392 | } |
| 393 | |
| 394 | function createArtifactDir(): string { |
| 395 | const runId = new Date().toISOString().replaceAll(':', '-'); |
| 396 | const artifactDir = path.resolve('test/artifacts/web/live-web-platform-e2e-smoke', runId); |
| 397 | mkdirSync(artifactDir, { recursive: true }); |
| 398 | return artifactDir; |
| 399 | } |
| 400 | |
| 401 | function fixtureHtml(): string { |
| 402 | return `<!doctype html> |
no outgoing calls
no test coverage detected