From 976038c806b7637a6a800c3ad2782a89fdf6c457 Mon Sep 17 00:00:00 2001 From: counterweight Date: Mon, 22 Dec 2025 09:31:00 +0100 Subject: [PATCH] no parallel running to avoid flaky tests --- frontend/playwright.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/playwright.config.ts b/frontend/playwright.config.ts index 4aaec48..4a17e91 100644 --- a/frontend/playwright.config.ts +++ b/frontend/playwright.config.ts @@ -3,7 +3,7 @@ import { defineConfig } from "@playwright/test"; export default defineConfig({ testDir: "./e2e", // Run tests sequentially to avoid database conflicts - workers: 12, + workers: 1, // Ensure tests within a file run in order fullyParallel: false, webServer: {