๐Ÿ“ฆ TomDo1234 / svelte-kit-cms

๐Ÿ“„ playwright.config.ts ยท 12 lines
1
2
3
4
5
6
7
8
9
10
11
12import type { PlaywrightTestConfig } from '@playwright/test';

const config: PlaywrightTestConfig = {
	webServer: {
		command: 'npm run build && npm run preview',
		port: 4173
	},
	testDir: 'tests'
};

export default config;