From e4845842cbe9d00ae0cd4daa5d95ba17aaf9d3c6 Mon Sep 17 00:00:00 2001 From: rodelgc Date: Sat, 13 May 2023 16:48:49 +0800 Subject: [PATCH] Default to 90 sec --- plugins/woocommerce/tests/e2e-pw/playwright.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/woocommerce/tests/e2e-pw/playwright.config.js b/plugins/woocommerce/tests/e2e-pw/playwright.config.js index 8c5d803cd46..49f76e255bd 100644 --- a/plugins/woocommerce/tests/e2e-pw/playwright.config.js +++ b/plugins/woocommerce/tests/e2e-pw/playwright.config.js @@ -11,7 +11,7 @@ const { const config = { timeout: DEFAULT_TIMEOUT_OVERRIDE ? Number( DEFAULT_TIMEOUT_OVERRIDE ) - : 300 * 1000, + : 90 * 1000, expect: { timeout: 20 * 1000 }, outputDir: './test-results/report', globalSetup: require.resolve( './global-setup' ),