From 5de24111c60c0113676b75b6a6ad5f3541a0c69f Mon Sep 17 00:00:00 2001 From: romarionijim Date: Thu, 6 Feb 2025 16:51:01 +0200 Subject: [PATCH] chore: increase timeout settings for Playwright tests --- playwright.config.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/playwright.config.ts b/playwright.config.ts index c554872..3c96309 100644 --- a/playwright.config.ts +++ b/playwright.config.ts @@ -10,6 +10,9 @@ require('dotenv').config(); * See https://playwright.dev/docs/test-configuration. */ export default defineConfig({ + timeout: 2 * 120 * 1000, + globalTimeout: 2 * 60 * 60 * 1000, + testDir: './tests', /* Run tests in files in parallel */ fullyParallel: true,