blob: 55b998975c47e33b14f2696bd4a365cfe13fc7c2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
import type { PlaywrightTestConfig } from "@playwright/test";
const config: PlaywrightTestConfig = {
webServer: {
command: "npm run build && npm run preview",
port: 4173,
},
testDir: "tests",
};
export default config;
|