Files
appointment-booking-software/playwright.config.ts
2025-09-01 17:47:46 +02:00

10 lines
187 B
TypeScript

import { defineConfig } from "@playwright/test";
export default defineConfig({
webServer: {
command: "npm run build && npm run preview",
port: 4173,
},
testDir: "e2e",
});