From f92edf00262c6223b137f8f2697a9a34ecac3b66 Mon Sep 17 00:00:00 2001 From: rugk Date: Sat, 4 May 2024 13:13:22 +0200 Subject: [PATCH] Run mocha tests properly --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 55a87b94..45a78c7b 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -130,7 +130,7 @@ jobs: working-directory: js - name: Run unit tests - run: npm test --reporter-option output=mocha-results.xml + run: npm ci-test working-directory: js - name: Upload Test Results @@ -138,7 +138,7 @@ jobs: uses: actions/upload-artifact@v4 with: name: Test Results (Mocha) - path: tst/mocha-results.xml + path: js/mocha-results.xml publish-test-results: name: "Publish Tests Results"