Files
WrestleDesk/frontend/playwright.config.ts
Andrej Spielmann 3fefc550fe Initial commit: WrestleDesk full project
- Django backend with DRF (clubs, wrestlers, trainers, exercises, templates, trainings, homework, locations, leistungstest)
- Next.js 16 frontend with React, Shadcn UI, Tailwind
- JWT authentication
- Full CRUD for all entities
- Calendar view for trainings
- Homework management system
- Leistungstest tracking
2026-03-26 13:24:57 +01:00

17 lines
473 B
TypeScript

import { defineConfig, devices } from '@playwright/test'
// Playwright configuration for WrestleDesk e2e tests
export default defineConfig({
testDir: './tests/playwright',
testMatch: '**/*.spec.ts',
fullyParallel: true,
/* Do not auto-run web server; rely on local dev servers.
You can run with: npx playwright test */
use: {
baseURL: 'http://localhost:3000',
screenshot: 'only-on-failure',
video: 'retain-on-failure',
},
timeout: 30000,
})