Visually makeover

This commit is contained in:
2026-07-03 21:05:07 +02:00
parent 10a239a155
commit c7fceee11f
40 changed files with 6851 additions and 1201 deletions
+28
View File
@@ -0,0 +1,28 @@
import { defineConfig, devices } from '@playwright/test';
const HOST = '127.0.0.1';
const PORT = 4174;
const BASE_URL = `http://${HOST}:${PORT}`;
export default defineConfig({
testDir: './tests/e2e',
retries: 0,
use: {
baseURL: BASE_URL,
trace: 'on-first-retry',
},
webServer: {
command: `npm run build && npm run preview -- --host ${HOST} --port ${PORT} --strictPort`,
url: BASE_URL,
reuseExistingServer: !process.env.CI,
timeout: 120000,
},
projects: [
{
name: 'chromium',
use: {
...devices['Desktop Chrome'],
},
},
],
});