38 lines
989 B
TypeScript
38 lines
989 B
TypeScript
import { defineConfig, devices } from "@playwright/test";
|
|
|
|
export default defineConfig({
|
|
testDir: "./e2e",
|
|
fullyParallel: true,
|
|
forbidOnly: !!process.env.CI,
|
|
retries: process.env.CI ? 2 : 0,
|
|
workers: process.env.CI ? 1 : undefined,
|
|
reporter: "html",
|
|
use: {
|
|
baseURL: "http://localhost:5173",
|
|
trace: "on-first-retry",
|
|
screenshot: "only-on-failure",
|
|
},
|
|
projects: [
|
|
{
|
|
name: "chromium",
|
|
use: { ...devices["Desktop Chrome"] },
|
|
},
|
|
],
|
|
// Note: In CI, webServer will start both backend and frontend
|
|
// Locally, you may need to start them manually or use npm run dev
|
|
webServer: process.env.CI ? [
|
|
{
|
|
command: "cd ../backend && DATABASE_URL=file:./dev.db npm run dev",
|
|
url: "http://localhost:8000/health",
|
|
reuseExistingServer: false,
|
|
timeout: 120000,
|
|
},
|
|
{
|
|
command: "npm run dev",
|
|
url: "http://localhost:5173",
|
|
reuseExistingServer: false,
|
|
timeout: 120000,
|
|
},
|
|
] : undefined,
|
|
});
|