From 86eff0c59852f781e2da5f9f186f1843630c6ad9 Mon Sep 17 00:00:00 2001 From: sagely1 <114952739+sagely1@users.noreply.github.com> Date: Tue, 12 Dec 2023 11:05:09 -0800 Subject: [PATCH] increasing playwright test timeout to 25 min for testing --- playwright.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/playwright.config.ts b/playwright.config.ts index f97034b4..2bcdc21b 100644 --- a/playwright.config.ts +++ b/playwright.config.ts @@ -12,7 +12,7 @@ import { defineConfig, devices } from '@playwright/test'; export default defineConfig({ testDir: './tests', // timeout for every test - timeout: 5 * 60 * 1000, + timeout: 25 * 60 * 1000, /* Run tests in files in parallel */ fullyParallel: true, /* Fail the build on CI if you accidentally left test.only in the source code. */