From 3a0d4c1c4a4a079eeed7f9cfedd8fddeb24d91d1 Mon Sep 17 00:00:00 2001 From: Ibrahim Date: Wed, 4 Dec 2024 15:05:43 -0500 Subject: [PATCH] update --- playwright.config.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/playwright.config.ts b/playwright.config.ts index 4245ce76235..607f5d0b13b 100644 --- a/playwright.config.ts +++ b/playwright.config.ts @@ -9,7 +9,7 @@ export default defineConfig({ snapshotPathTemplate: './tests/screenshots{/projectName}/{testFilePath}/{arg}{ext}', outputDir: './tests/test-results', reporter: [[process.env.CI ? 'blob' : 'html', { outputFolder: './tests/playwright-report' }]], - timeout: 720 * 1000, + timeout: 120_000, use: { baseURL: 'http://localhost:3000', trace: 'on-first-retry', @@ -39,6 +39,6 @@ export default defineConfig({ command: 'yarn test:e2e:serve', url: 'http://localhost:3000', reuseExistingServer: !process.env.CI, - timeout: 240 * 1000, + timeout: 120_000, }, });