Files
RRS/playwright.config.js
T
2026-09-12 03:08:23 -04:00

15 lines
391 B
JavaScript

import { defineConfig } from "@playwright/test";
export default defineConfig({
testDir: "./tests",
fullyParallel: true,
workers: 2,
reporter: "list",
use: { baseURL: "http://127.0.0.1:5173", screenshot: "only-on-failure" },
webServer: {
command: "npm run dev -- --port 5173 --strictPort",
url: "http://127.0.0.1:5173",
reuseExistingServer: !process.env.CI,
},
});