File size: 207 Bytes
a76eef5
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
import { defineConfig } from "@playwright/test";

export default defineConfig({
	webServer: {
		command: "npm run build && npm run preview",
		port: 4173,
		timeout: 1000 * 60 * 10,
	},
	testDir: "e2e",
});