From b25b7fdcc0f735a4483543b6ec6c9a3e32411ca4 Mon Sep 17 00:00:00 2001 From: Ed Rivas Date: Mon, 25 Apr 2022 21:46:14 +0000 Subject: [PATCH] ci: increase test timeout --- playwright.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/playwright.config.js b/playwright.config.js index 5e218cf..079353e 100644 --- a/playwright.config.js +++ b/playwright.config.js @@ -1,5 +1,5 @@ export default { - timeout: 5000, // Max execution time of any single test + timeout: process.env.CI ? undefined : 3000, // Max execution time of any single test expect: { timeout: 1000, // Max execution time of single expect() calls },