From 32fe3ab8159eeedff5ac22ab9df4e9d7ebee7fc2 Mon Sep 17 00:00:00 2001
From: Nemikolh <Nemikolh@users.noreply.github.com>
Date: Tue, 16 May 2023 12:51:04 +0100
Subject: [PATCH] Speed up tests on local and on StackBlitz

---
 scripts/tests/all.test.ts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/tests/all.test.ts b/scripts/tests/all.test.ts
index a7867dee..19d5e251 100644
--- a/scripts/tests/all.test.ts
+++ b/scripts/tests/all.test.ts
@@ -26,7 +26,7 @@ describe("vitest", async () => {
     let result: string;
 
     try {
-      result = execSync(`npx vitest run --reporter=json`, {
+      result = execSync(`npx vitest run --reporter=json --single-thread`, {
         cwd: rootFolder,
         stdio: "pipe",
       }).toString();