19 lines
490 B
Text
19 lines
490 B
Text
|
|
# Test Environment Configuration
|
||
|
|
|
||
|
|
# Frontend URL (default: http://localhost:5173)
|
||
|
|
BASE_URL=http://localhost:5173
|
||
|
|
|
||
|
|
# Selenium Hub URL (default: http://localhost:4444)
|
||
|
|
# Use http://localhost:4444 for Docker Selenium
|
||
|
|
SELENIUM_HUB=http://localhost:4444
|
||
|
|
|
||
|
|
# Test Mode
|
||
|
|
# Set to "true" to run tests in headless mode
|
||
|
|
HEADLESS=false
|
||
|
|
|
||
|
|
# Test User Credentials (for existing user tests)
|
||
|
|
TEST_USER_EMAIL=test@example.com
|
||
|
|
TEST_USER_PASSWORD=password123
|
||
|
|
|
||
|
|
# Test Timeout (in milliseconds)
|
||
|
|
TEST_TIMEOUT=30000
|