no parallel running to avoid flaky tests

This commit is contained in:
counterweight 2025-12-22 09:31:00 +01:00
parent e7e3c97102
commit 976038c806
Signed by: counterweight
GPG key ID: 883EDBAA726BD96C

View file

@ -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: {