Files
archtika/web-app/playwright.config.ts
2024-08-31 18:27:25 +02:00

16 lines
340 B
TypeScript

import { type PlaywrightTestConfig } from "@playwright/test";
const config: PlaywrightTestConfig = {
webServer: {
command: "npm run build && npm run preview",
url: "http://localhost:4173"
},
use: {
baseURL: "http://localhost:4173"
},
testDir: "tests",
testMatch: /(.+\.)?(test|spec)\.ts/
};
export default config;