forked from OpenSID/OpenDK
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.e2e.example
More file actions
35 lines (28 loc) · 773 Bytes
/
Copy path.env.e2e.example
File metadata and controls
35 lines (28 loc) · 773 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# 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