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 验收仍待用户凭据。
21 lines
654 B
TypeScript
21 lines
654 B
TypeScript
import { defineConfig } from '@playwright/test';
|
|
export default defineConfig({
|
|
testDir: './e2e',
|
|
testIgnore: /(?:lekiwi.*|mobile|website.*)\.spec\.ts/,
|
|
timeout: 120_000,
|
|
use: { baseURL: 'http://127.0.0.1:4173' },
|
|
webServer: [
|
|
{
|
|
command: 'npm run preview --prefix .. -- --host 127.0.0.1',
|
|
url: 'http://127.0.0.1:4173',
|
|
reuseExistingServer: true,
|
|
},
|
|
{
|
|
// Synthetic real-WASM bridge fixture is intentionally not in the production bundle.
|
|
command: 'npm run dev --prefix .. -- --host 127.0.0.1 --port 4174 --strictPort',
|
|
url: 'http://127.0.0.1:4174',
|
|
reuseExistingServer: false,
|
|
},
|
|
],
|
|
});
|