diff --git a/playwright.config.ts b/playwright.config.ts index 22a0d1d6..ab92cc00 100644 --- a/playwright.config.ts +++ b/playwright.config.ts @@ -12,6 +12,8 @@ export default defineConfig({ globalSetup: './playwright.setup', // Entire test suite timeout - 1 hour globalTimeout: 60 * 60 * 1000, + // Per-test timeout - 60 sec + timeout: 60_000, // This is a desktop app; sharding is required to run tests in parallel. workers: 1, // GitHub reporter in CI, dot reporter for local development. @@ -28,14 +30,10 @@ export default defineConfig({ { name: 'install', testMatch: ['install/**/*.spec.ts', 'shared/**/*.spec.ts'], - // Per-test timeout - 60 sec - timeout: 60_000, }, { name: 'post-install', testMatch: ['post-install/**/*.spec.ts', 'shared/**/*.spec.ts'], - // Per-test timeout - 60 sec - timeout: 60_000, dependencies: ['install'], }, ],