mirror of
https://github.com/webadderallorg/Recordly.git
synced 2026-09-24 14:55:37 +00:00
17 lines
440 B
TypeScript
17 lines
440 B
TypeScript
import { defineConfig } from "@playwright/test";
|
|
export default defineConfig({
|
|
testDir: "./tests/ui",
|
|
timeout: 30000,
|
|
use: {
|
|
baseURL: "http://127.0.0.1:5178",
|
|
viewport: { width: 1440, height: 1000 },
|
|
trace: "retain-on-failure",
|
|
},
|
|
webServer: {
|
|
env: { RECORDLY_RENDERER_ONLY: "1" },
|
|
command: "npx vite --host 127.0.0.1 --port 5178 --strictPort",
|
|
url: "http://127.0.0.1:5178",
|
|
reuseExistingServer: !process.env.CI,
|
|
},
|
|
});
|