PixelForge / imageforge /frontend /playwright.config.ts
Gregorfun's picture
Initial commit
32c5da4
import { defineConfig } from "@playwright/test";
export default defineConfig({
testDir: "./tests",
retries: 1,
use: {
baseURL: "http://127.0.0.1:5173",
headless: true,
},
webServer: {
command: "npm run dev:web",
port: 5173,
timeout: 120000,
reuseExistingServer: true,
},
});