From 0312a631a0d4b03b15d8eea1db03451f74c960c5 Mon Sep 17 00:00:00 2001 From: developomp Date: Sat, 29 Jul 2023 11:01:43 +0900 Subject: [PATCH] chore(playwright): reduce web server timeout --- packages/playwright-config/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/playwright-config/index.ts b/packages/playwright-config/index.ts index a2de09e..67bbbe4 100644 --- a/packages/playwright-config/index.ts +++ b/packages/playwright-config/index.ts @@ -22,7 +22,7 @@ export function createConfig(config: Config): PlaywrightTestConfig { webServer: { command: "pnpm serve", url: baseURL, - timeout: 120 * 1000, + timeout: 30 * 1000, // eslint-disable-next-line turbo/no-undeclared-env-vars reuseExistingServer: !process.env.CI, },