From 14863bd457ef827d26f1ef7ca9ac3c62effcc9b6 Mon Sep 17 00:00:00 2001 From: rkuo-danswer Date: Tue, 3 Dec 2024 15:21:46 -0800 Subject: [PATCH] try single threaded playwright testing (#3322) --- web/playwright.config.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/web/playwright.config.ts b/web/playwright.config.ts index 76101a65e1..ddfb1d476a 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