From 4ecd352d3c9bd9aac2793ef63c5482f72b3cdc92 Mon Sep 17 00:00:00 2001 From: Abderrahmane Smimite Date: Wed, 2 Oct 2024 17:40:57 +0200 Subject: [PATCH] fixup --- frontend/playwright.config.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/playwright.config.ts b/frontend/playwright.config.ts index e657d57a7..53948622b 100644 --- a/frontend/playwright.config.ts +++ b/frontend/playwright.config.ts @@ -7,7 +7,8 @@ const config: PlaywrightTestConfig = { ? 'echo "The docker compose frontend server didn\'t start correctly"' : 'npm install -g pnpm && pnpm install && pnpm run build && pnpm run preview', port: process.env.COMPOSE_TEST ? 3000 : 4173, - reuseExistingServer: process.env.COMPOSE_TEST + reuseExistingServer: process.env.COMPOSE_TEST, + timeout: 120 * 1000 }, testDir: 'tests', outputDir: 'tests/results',