Skip to content
Snippets Groups Projects
playwright.config.ts 179 B
Newer Older
Louis's avatar
Louis committed
import { defineConfig } from '@playwright/test';

export default defineConfig({
	webServer: {
		command: 'npm run build && npm run preview',
		port: 4173
	},

	testDir: 'e2e'
});