mirror of
https://github.com/open-reception/appointment-booking-software.git
synced 2026-08-17 21:25:52 +02:00
10 lines
187 B
TypeScript
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",
|
|
});
|