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