初始提交:ai-review 项目当前版本(含赛道一/二提交规范修订与时间节点文档)

This commit is contained in:
hangshuo652
2026-08-23 11:52:45 +08:00
commit 4da7044c4b
152 changed files with 33490 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
import { defineConfig } from '@playwright/test';
import { fileURLToPath } from 'url';
import path from 'path';
const __dirname = path.dirname(fileURLToPath(import.meta.url));
export default defineConfig({
testDir: './e2e',
timeout: 90000,
retries: 0,
globalSetup: path.join(__dirname, 'e2e/global-setup.ts'),
globalTeardown: path.join(__dirname, 'e2e/global-teardown.ts'),
use: {
baseURL: 'http://localhost:14001',
headless: true,
screenshot: 'only-on-failure',
trace: 'retain-on-failure',
},
projects: [
{ name: 'chromium', use: { browserName: 'chromium' } },
],
});