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

const config: PlaywrightTestConfig = {
	webServer: {
		command: 'bun run build && bun run preview',
		port: 4173
	},
	testDir: 'tests',
	testMatch: /(.+\.)?(test|spec)\.[jt]s/
};

export default config;