From 84d6b74b1c2a66bde854b613985eed3d4378a6d9 Mon Sep 17 00:00:00 2001 From: Torben Sorensen Date: Tue, 16 Dec 2025 19:32:36 -0800 Subject: [PATCH] Refactor: Adjust test timeout and enable verbose output for unit and integration tests in deploy-to-test workflow --- .gitea/workflows/deploy-to-test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/deploy-to-test.yml b/.gitea/workflows/deploy-to-test.yml index e98ee283..c85e32dd 100644 --- a/.gitea/workflows/deploy-to-test.yml +++ b/.gitea/workflows/deploy-to-test.yml @@ -111,10 +111,10 @@ jobs: # Run unit and integration tests as separate steps. # The `|| true` ensures the workflow continues even if tests fail, allowing coverage to run. echo "--- Running Unit Tests ---" - npm run test:unit -- --coverage --reporter=verbose --includeTaskLocation --testTimeout=20000 || true + npm run test:unit -- --coverage --reporter=verbose --includeTaskLocation --testTimeout=10000 --silent=false || true echo "--- Running Integration Tests ---" - npm run test:integration -- --coverage --reporter=verbose --includeTaskLocation --testTimeout=20000 || true + npm run test:integration -- --coverage --reporter=verbose --includeTaskLocation --testTimeout=10000 --silent=false || true # Re-enable secret masking for subsequent steps. echo "::secret-masking::"