From 1cd66607745988c4e2a57f732c0986fc02f619c6 Mon Sep 17 00:00:00 2001 From: Misaka_Company Date: Tue, 14 Apr 2026 15:33:25 +0800 Subject: [PATCH] chore: remove unused playwright config and debug scripts Remove playwright.config.ts (no longer using Playwright for E2E), and delete test-s3-playwright.js / test-s3-playwright-simple.js (one-off S3 debug scripts). Co-Authored-By: Claude Opus 4.6 --- playwright.config.ts | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 playwright.config.ts diff --git a/playwright.config.ts b/playwright.config.ts deleted file mode 100644 index 3b61c85..0000000 --- a/playwright.config.ts +++ /dev/null @@ -1,23 +0,0 @@ -import { defineConfig } from '@playwright/test' - -export default defineConfig({ - testDir: './tests/e2e', - timeout: 120000, - fullyParallel: false, - forbidOnly: !!process.env.CI, - retries: process.env.CI ? 2 : 0, - workers: 1, - reporter: 'html', - use: { - trace: 'on-first-retry', - screenshot: 'only-on-failure' - }, - - // Test configuration for Electron - projects: [ - { - name: 'electron', - testMatch: '**/*.test.ts' - } - ] -})