From 14df828bde4b8d5cb5de0ba8b904747740e6e82d Mon Sep 17 00:00:00 2001 From: "Richard Kuo (Danswer)" Date: Tue, 3 Dec 2024 14:18:40 -0800 Subject: [PATCH] try single threaded playwright testing --- web/playwright.config.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/web/playwright.config.ts b/web/playwright.config.ts index 76101a65e1e..ddfb1d476a1 100644 --- a/web/playwright.config.ts +++ b/web/playwright.config.ts @@ -1,6 +1,7 @@ import { defineConfig, devices } from "@playwright/test"; export default defineConfig({ + workers: 1, // temporary change to see if single threaded testing stabilizes the tests testDir: "./tests/e2e", // Folder for test files reporter: "list", // Configure paths for screenshots