hestia/playwright.config.ts
Benjamin Palko d055c4bc40 init
2024-12-06 16:14:24 -05:00

10 lines
179 B
TypeScript

import { defineConfig } from '@playwright/test';
export default defineConfig({
webServer: {
command: 'npm run build && npm run preview',
port: 4173
},
testDir: 'e2e'
});