From 6f5156440156e128c4aa99eb6b3c7f67021ee457 Mon Sep 17 00:00:00 2001 From: GSRN Date: Tue, 16 Sep 2025 22:38:53 +0200 Subject: [PATCH] chore: Update test command in CI workflow for improved reporting ### Summary of Changes - Modified the test command in the CI workflow to use `--run` and `--reporter=verbose` for better execution control and detailed output. ### Expected Results - Enhanced clarity of test results during CI runs, facilitating easier debugging and monitoring of test coverage. --- .gitea/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index e46d206..dc6fbbd 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -241,7 +241,7 @@ jobs: run: npm run lint - name: Run tests - run: npm test -- --coverage --watchAll=false --coverageReporters=lcov --coverageReporters=text --coverageReporters=html + run: npm test -- --run --coverage --reporter=verbose - name: Send results to SonarQube run: |