paperclip/packages/paperclip-runner/examples/playwright.config.ts

25 lines
635 B
TypeScript

import { defineConfig } from "@playwright/test";
export default defineConfig({
testDir: ".",
testMatch: "sdk.spec.ts",
fullyParallel: false,
workers: 1,
timeout: 120_000,
reporter: "line",
use: {
baseURL: "http://127.0.0.1:4192",
viewport: { width: 1440, height: 900 },
},
webServer: {
command: "pnpm exec vite --config vite.sdk.config.ts --host 127.0.0.1 --port 4192",
env: {
PAPERCLIP_LIVE_CONSOLE_CHUNK_DELAY_MS: "250",
PAPERCLIP_LIVE_CONSOLE_MAX_SESSIONS: "64",
},
url: "http://127.0.0.1:4192/reference-console/",
reuseExistingServer: false,
timeout: 30_000,
},
});