Removed auth
All checks were successful
Publish Container / publish (push) Successful in 5m35s

This commit is contained in:
Marco 2026-04-20 14:11:18 +02:00
commit 08e573d63c
17 changed files with 348 additions and 26 deletions

15
playwright.config.ts Normal file
View file

@ -0,0 +1,15 @@
import { defineConfig } from '@playwright/test';
const baseURL = process.env.PLAYWRIGHT_BASE_URL ?? 'http://127.0.0.1:8002';
export default defineConfig({
testDir: './tests/playwright',
timeout: 30_000,
fullyParallel: true,
retries: 0,
use: {
baseURL,
trace: 'retain-on-failure'
},
reporter: [['list']]
});