chore: griddy work

This commit is contained in:
Hein
2026-02-13 17:09:49 +02:00
parent 7ecafc8461
commit b49d008745
24 changed files with 2184 additions and 22 deletions

23
playwright.config.ts Normal file
View File

@@ -0,0 +1,23 @@
import { defineConfig, devices } from '@playwright/test';
export default defineConfig({
forbidOnly: !!process.env.CI,
fullyParallel: true,
projects: [
{
name: 'chromium',
use: { ...devices['Desktop Chrome'] },
},
],
reporter: 'html',
retries: process.env.CI ? 2 : 0,
testDir: './tests/e2e',
use: {
baseURL: 'http://localhost:6006',
trace: 'on-first-retry',
},
webServer: undefined,
workers: process.env.CI ? 1 : undefined,
});