diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e9701ac..9a8884c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -35,5 +35,5 @@ jobs: if: success() || failure() # run this step even if previous step failed with: name: Jest Tests # Name of the check run which will be created - path: reports/junit*.xml # Path to test results + path: junit*.xml # Path to test results reporter: jest-junit # Format of test results diff --git a/package.json b/package.json index 909ddf4..9dd0418 100644 --- a/package.json +++ b/package.json @@ -8,7 +8,7 @@ "start": "npm run build -- --stats=errors-only && electron dist", "start-local": "npm run build -- --stats=errors-only && electron dist --control.address=http://localhost:4444 --control.username=streamwall --control.password=local-dev", "test-full": "jest", - "test": "JEST_JUNIT_OUTPUT_DIR=reports JEST_JUNIT_OUTPUT_NAME=junit.json jest --ci --reporters=default --reporters=jest-junit --testPathIgnorePatterns=src/node/server.test.js --coverage" + "test": "jest --ci --reporters=default --reporters=jest-junit --testPathIgnorePatterns=src/node/server.test.js --coverage" }, "author": "Max Goodhart ", "license": "MIT",