hestia/playwright.config.ts
Benjamin Palko a4deed23fe format
2024-12-20 10:56:36 -05:00

10 lines
181 B
TypeScript

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