forge/web/playwright.config.ts
Damianko135 11345cfe87 Initial commit
Initialize web, api and database for this project.
Web uses better-auth, paraglide, tailwind, shadcn components, and more.

Not much else has been done.
2026-04-26 12:09:10 +02:00

7 lines
188 B
TypeScript

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