From ddc1a1562068277de5a8777e0ec9de8349cf843c Mon Sep 17 00:00:00 2001 From: Andreas Tzionis Date: Fri, 1 Sep 2023 17:51:33 +0300 Subject: [PATCH] increase e2e tests timeout --- e2e/base.config.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/e2e/base.config.ts b/e2e/base.config.ts index 4388499a..0927a837 100644 --- a/e2e/base.config.ts +++ b/e2e/base.config.ts @@ -1,16 +1,18 @@ +// @ts-nocheck + import { devices } from '@playwright/test' const baseURL = `http://localhost:3000` const CI = process.env.CI === 'true' const config = { - timeout: 15 * 1000, + timeout: 15 * 1000, // 15 secs retries: 1, reporter: CI ? 'github' : 'list', forbidOnly: CI, webServer: { url: baseURL, - timeout: 60 * 1000, + timeout: 2 * 60 * 1000, // 2 mins reuseExistingServer: true, }, use: { baseURL, trace: 'retry-with-trace', headless: CI },