From 3fdb89b31a1d9359b8ea2e2de46eb97a14377315 Mon Sep 17 00:00:00 2001 From: Alejandro Peralta Date: Mon, 2 Dec 2024 20:57:56 +0100 Subject: [PATCH] test(api): Increate testTimeout to 20000ms --- api/test/jest-config.json | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/api/test/jest-config.json b/api/test/jest-config.json index 84771cdc..3ef8fe52 100644 --- a/api/test/jest-config.json +++ b/api/test/jest-config.json @@ -1,10 +1,7 @@ { "moduleFileExtensions": ["js", "json", "ts"], "rootDir": "../", - "roots": [ - "/src/", - "/test/" - ], + "roots": ["/src/", "/test/"], "testEnvironment": "node", "testRegex": ".spec.ts$", "transform": { @@ -15,5 +12,6 @@ "^@api/(.*)$": "/src/$1", "^@client/(.*)$": "/../client/src/$1", "^@shared/(.*)$": "/../shared/$1" - } + }, + "testTimeout": 20000 }