f3a8a38acd
web-platform-ci / Standalone decision service (no cloud credentials) (push) Has been cancelled
web-platform-ci / TypeScript, lint, unit, build (push) Has been cancelled
web-platform-ci / Playwright E2E (push) Has been cancelled
lekiwi-compatibility / cpu-compatibility (push) Has been cancelled
web-platform-ci / Standalone decision service (no cloud credentials) (pull_request) Has been cancelled
web-platform-ci / TypeScript, lint, unit, build (pull_request) Has been cancelled
web-platform-ci / Playwright E2E (pull_request) Has been cancelled
lekiwi-compatibility / cpu-compatibility (pull_request) Has been cancelled
集成同源 BYOK 会话隔离、精简模型设置、官方订阅入口和 HTTPS 发布运维;保留本地训练/调参与控制能力。同步 npm 版本及 CHANGELOG,记录公网真实 API 验收仍待用户凭据。
15 lines
490 B
TypeScript
15 lines
490 B
TypeScript
import { defineConfig } from '@playwright/test';
|
|
export default defineConfig({
|
|
testDir: './e2e',
|
|
testMatch: /lekiwi\.agent(?:\.(?:workspace|live|faults|lifecycle|subscription))?\.spec\.ts/,
|
|
outputDir: '../build/e2e/lekiwi-agent',
|
|
timeout: 300_000,
|
|
workers: 1,
|
|
use: { baseURL: 'http://127.0.0.1:4176' },
|
|
webServer: {
|
|
command: 'npm run dev --prefix .. -- --host 127.0.0.1 --port 4176 --strictPort',
|
|
url: 'http://127.0.0.1:4176',
|
|
reuseExistingServer: false,
|
|
},
|
|
});
|