moving
Some checks failed
Installer Smoke / installer-smoke (push) Has been cancelled

This commit is contained in:
Oleg Maslov
2026-09-02 10:10:29 +02:00
commit 0c3e2ead3b
3841 changed files with 970576 additions and 0 deletions

17
playwright-e2e.config.ts Normal file
View File

@@ -0,0 +1,17 @@
import { defineConfig } from '@playwright/test';
export default defineConfig({
testDir: 'tests/e2e',
timeout: 60000,
retries: 0,
reporter: 'list',
use: {
baseURL: 'http://localhost:3333',
headless: true,
screenshot: 'only-on-failure',
trace: 'off',
},
projects: [
{ name: 'chromium', use: { browserName: 'chromium' } },
],
});