feat: 更新UAT测试配置和修复数据库连接问题
refactor(测试): 重构用户数据加载逻辑以支持数组格式 fix(数据库): 修正数据库连接配置和凭证 test: 添加新的导航和用户管理测试场景 docs: 生成UAT测试报告和最终报告 ci: 更新Woodpecker CI配置和测试命令 build: 添加application-test.yml配置文件 chore: 清理旧的测试场景文件
This commit is contained in:
@@ -10,9 +10,9 @@ export default defineConfig({
|
||||
retries: process.env.CI ? 2 : 0,
|
||||
workers: process.env.CI ? 4 : 8,
|
||||
reporter: [
|
||||
['html', { outputFolder: 'uat-tests/test-results/html-report' }],
|
||||
['json', { outputFile: 'uat-tests/test-results/results.json' }],
|
||||
['junit', { outputFile: 'uat-tests/test-results/junit.xml' }],
|
||||
['html', { outputFolder: 'test-results/html-report' }],
|
||||
['json', { outputFile: 'test-results/results.json' }],
|
||||
['junit', { outputFile: 'test-results/junit.xml' }],
|
||||
['list']
|
||||
],
|
||||
use: {
|
||||
@@ -38,5 +38,5 @@ export default defineConfig({
|
||||
use: { ...devices['Desktop Safari'] },
|
||||
},
|
||||
],
|
||||
outputDir: 'uat-tests/test-results/artifacts',
|
||||
outputDir: 'test-results/artifacts',
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user