hestia/playwright.config.ts
2024-12-19 22:49:03 -05:00

10 lines
No EOL
180 B
TypeScript

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