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' - } - ] -})