aboutsummaryrefslogtreecommitdiff
path: root/playground/playwright.config.ts
diff options
context:
space:
mode:
authorValentin Popov <valentin@popov.link>2026-02-06 00:53:51 +0300
committerValentin Popov <valentin@popov.link>2026-02-06 00:53:51 +0300
commitd387c7bf8ae7711858b3348a6efa28bfeb8e878b (patch)
treeb3b1a6b3b96660c76a9f1ec4b46da4149e87d78f /playground/playwright.config.ts
parent7a0e6615d05ba2a3c0119eaf7a6d67f66b9de985 (diff)
downloadstrapi-plugin-checkbox-list-d387c7bf8ae7711858b3348a6efa28bfeb8e878b.tar.xz
strapi-plugin-checkbox-list-d387c7bf8ae7711858b3348a6efa28bfeb8e878b.zip
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.
Diffstat (limited to 'playground/playwright.config.ts')
-rw-r--r--playground/playwright.config.ts17
1 files changed, 0 insertions, 17 deletions
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',
- },
-});