#!/bin/bash set -e echo "=== Creating index page for consolidated report ===" cat > results/html/index.html << 'EOF' Utopia Map E2E Test Report

Utopia Map E2E Test Report

Generated: $(date)
Run ID: ${GITHUB_RUN_ID:-unknown}
Commit: ${GITHUB_SHA:-unknown}
Status: Tests Failed

📊 Consolidated Test Report

This report contains all test results from the parallel test execution, merged into one comprehensive view with screenshots embedded directly in failing test cases.

📈 View Complete Test Report (All Specs)

📸 Test Screenshots

Screenshots are automatically embedded within their respective failing test cases in the main report. No separate screenshot viewing required.

EOF echo "✅ Simple index page created with auto-redirect to consolidated report"