From 11a94cc99e018df455305862b4a9b465be53b0ab Mon Sep 17 00:00:00 2001 From: ryanrosello-og <50574915+ryanrosello-og@users.noreply.github.com> Date: Thu, 8 Aug 2024 20:49:16 +1000 Subject: [PATCH] set global test timeout using the Playwright config (#3330) set global test timeout Co-authored-by: ryanrosello-og --- playwright.config.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/playwright.config.ts b/playwright.config.ts index 27e49efbe..779811d3c 100644 --- a/playwright.config.ts +++ b/playwright.config.ts @@ -10,6 +10,7 @@ import { defineConfig, devices } from '@playwright/test' * See https://playwright.dev/docs/test-configuration. */ export default defineConfig({ + timeout: 120_000, // override the default 30s timeout testDir: './e2e/playwright', /* Run tests in files in parallel */ fullyParallel: true,