Files
lucia-frontend/tests/e2e/playwright.config.ts
2026-03-22 18:52:18 +08:00

28 lines
592 B
TypeScript

// The Lucia project.
// Copyright 2026-2026 DSP, inc. All rights reserved.
// Authors:
// imacat.yang@dsp.im (imacat), 2026/03/22
import { defineConfig } from "@playwright/test";
export default defineConfig({
testDir: "./specs",
timeout: 30000,
expect: { timeout: 5000 },
use: {
baseURL: "http://localhost:4173",
viewport: { width: 1280, height: 720 },
},
projects: [
{
name: "chromium",
use: { browserName: "chromium" },
},
],
webServer: {
command: "npx vite preview --port 4173",
port: 4173,
reuseExistingServer: true,
},
});