()
| 249 | } |
| 250 | |
| 251 | async function main() { |
| 252 | console.log( |
| 253 | `Session E2E — api=${API_URL} worker=${WORKER_URL} timeout=${SESSION_TIMEOUT_MS}ms project=${PROJECT_ID}` |
| 254 | ); |
| 255 | await preflight(); |
| 256 | await ensureFixtures(); |
| 257 | await scenarioSingleSession(); |
| 258 | await scenarioBoundary(); |
| 259 | await scenarioNonScreenViewFirst(); |
| 260 | await scenarioReplay(); |
| 261 | await scenarioIdentify(); |
| 262 | await shutdown(summarize()); |
| 263 | } |
| 264 | |
| 265 | main().catch(async (error) => { |
| 266 | console.error('\nFATAL:', error); |
no test coverage detected