0d986f60bd
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
集成服务器托管模型、自然语言移动与有界抓放、内置 LeKiwi URL 导入和双摄像头;同步部署契约与指定域名 iframe 白名单,保留原有物理安全、会话及调用预算防护。 更新 npm 包及锁文件版本、CHANGELOG 与发布文档。提交前 typecheck、120 项定向前端测试和 44 项后端测试通过(3 项可选跳过);真实 v2 云模型抓放仍待单独验收,不包含运行密钥或构建产物。
21 lines
668 B
TypeScript
21 lines
668 B
TypeScript
import { defineConfig } from '@playwright/test';
|
|
export default defineConfig({
|
|
testDir: './e2e',
|
|
testIgnore: /(?:lekiwi.*|mobile|website.*|builtinRobots)\.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,
|
|
},
|
|
],
|
|
});
|