From a4703434e44af27b810c71ac4f59ac5e25e752c9 Mon Sep 17 00:00:00 2001 From: clau <1281581+dualcnhq@users.noreply.github.com> Date: Thu, 9 Jan 2025 15:09:03 +0800 Subject: [PATCH] change global test timeout --- playwright.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/playwright.config.ts b/playwright.config.ts index 4219e1a3..611a504e 100644 --- a/playwright.config.ts +++ b/playwright.config.ts @@ -26,7 +26,7 @@ const reportName = () => `${process.env.CATEGORY}/${formattedDateTime()}`; export default defineConfig({ workers: 5, // Timeout for each test - timeout: 3 * 60 * 1000, // 3 mins + timeout: 5 * 60 * 1000, // 5 mins // Maximum time the whole test suite can run globalTimeout: 20 * 60 * 1000, // 20 mins testDir: './tests',