aboutsummaryrefslogtreecommitdiffstats
path: root/apps/kit/playwright.config.ts
blob: 59267524bd648b964e38f4d6467be863ad64c420 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
import type { PlaywrightTestConfig } from '@playwright/test';

const config: PlaywrightTestConfig = {
	webServer: {
		command: 'pnpm run dev',
		port: 5173
	}
};

export default config;