From 4122072b51e1b5048821b40feecd28753d55c3e1 Mon Sep 17 00:00:00 2001 From: prayansh_chhablani Date: Tue, 10 Sep 2024 19:54:36 +0530 Subject: [PATCH] file --- vite.config.mts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vite.config.mts b/vite.config.mts index 2f366e80a8..284d90a2df 100644 --- a/vite.config.mts +++ b/vite.config.mts @@ -47,11 +47,14 @@ export default defineConfig({ // is used in codecov/codecov-action github action for talawa-api. reporter: ["lcov", "text"], }, - + // Tells vitest the time limit for an individual test block run. testTimeout: 30000, // Use a thread pool for parallel execution to improve performance pool: 'threads', + + // Disable file-level parallelism to process files sequentially + fileParallelism: false, }, });