c50ccd258f
refactor(tests): 将e2e_tests迁移到tests_suite和api_integration_tests style: 为Java类添加文档注释 docs: 更新.gitignore和配置文件 test: 添加性能测试和Playwright测试脚本 chore: 清理旧测试文件和配置
23 lines
391 B
Bash
23 lines
391 B
Bash
# E2E测试环境配置
|
|
|
|
# API配置
|
|
API_BASE_URL=http://localhost:8080
|
|
|
|
# 数据库配置
|
|
DATABASE_HOST=localhost
|
|
DATABASE_PORT=55432
|
|
DATABASE_NAME=manage_system
|
|
DATABASE_USERNAME=postgres
|
|
DATABASE_PASSWORD=postgres
|
|
|
|
# 测试用户凭证
|
|
TEST_USERNAME=admin
|
|
TEST_PASSWORD=admin123
|
|
|
|
# 浏览器配置
|
|
HEADLESS_BROWSER=true
|
|
BROWSER_TYPE=chromium
|
|
|
|
# 超时配置(毫秒)
|
|
REQUEST_TIMEOUT=30000
|