aboutsummaryrefslogtreecommitdiffstats
path: root/code/app/playwright.config.ts
blob: 22c46d9a93b0f54937867744661b15f256c94700 (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 build && pnpm run preview',
		port: 4173
	}
};

export default config;