From d387c7bf8ae7711858b3348a6efa28bfeb8e878b Mon Sep 17 00:00:00 2001 From: Valentin Popov Date: Thu, 5 Feb 2026 21:53:51 +0000 Subject: Refactor Gitea workflow and update package dependencies - Simplified the Gitea workflow by removing the E2E testing section and renaming the integration tests job. - Updated package-lock.json to include new dependencies for escape-string-regexp and removed outdated dependencies. - Removed Playwright configuration and related test files from the playground directory to streamline testing processes. --- playground/playwright.config.ts | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 playground/playwright.config.ts (limited to 'playground/playwright.config.ts') diff --git a/playground/playwright.config.ts b/playground/playwright.config.ts deleted file mode 100644 index 0cc4d72..0000000 --- a/playground/playwright.config.ts +++ /dev/null @@ -1,17 +0,0 @@ -import { defineConfig } from '@playwright/test'; - -const baseURL = process.env.PLAYWRIGHT_BASE_URL ?? 'http://127.0.0.1:1337'; - -export default defineConfig({ - testDir: './e2e', - timeout: 120_000, - expect: { - timeout: 10_000, - }, - retries: process.env.CI ? 1 : 0, - use: { - baseURL, - headless: true, - trace: 'on-first-retry', - }, -}); -- cgit v1.2.3