# E2E Testing Environment Configuration # Copy this file to .env.e2e and modify according to your local setup # Application URL E2E_APP_URL=http://localhost:8000 # Database Configuration for E2E Testing E2E_DB_CONNECTION=mysql E2E_DB_HOST=localhost E2E_DB_PORT=3306 E2E_DB_DATABASE=opendesa_test E2E_DB_USERNAME=root E2E_DB_PASSWORD=secret # Authentication Credentials E2E_ADMIN_EMAIL=admin@test.com E2E_ADMIN_PASSWORD=password # Test User Credentials (optional) E2E_USER_EMAIL=user@test.com E2E_USER_PASSWORD=password # Browser Settings E2E_HEADLESS=true E2E_SLOWMO=0 E2E_TIMEOUT=30000 # Screenshot and Video Settings E2E_SCREENSHOT=only-on-failure E2E_VIDEO=retain-on-failure E2E_TRACE=on-first-retry # Laravel Configuration LARAVEL_ENV=testing LARAVEL_DEBUG=true