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

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

export default config;