From 2ea9550565087380e2b90bddc1a5ed4e58b888ee Mon Sep 17 00:00:00 2001 From: codex Date: Tue, 21 Apr 2026 21:32:32 -0300 Subject: [PATCH] ci(pegasus): publish real junit test cases --- Jenkinsfile | 2 +- frontend/package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index f17b2b8..054822b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -167,7 +167,7 @@ PY retry_command go install github.com/jstemmer/go-junit-report/v2@latest tool_rc=$? if [ "${tool_rc}" -eq 0 ]; then - retry_command go test -coverprofile=../build/coverage-backend.out ./... > ../build/backend-test.out 2>&1 + retry_command go test -v -coverprofile=../build/coverage-backend.out ./... > ../build/backend-test.out 2>&1 test_rc=$? else test_rc=1 diff --git a/frontend/package.json b/frontend/package.json index f8a3e7e..5f3f1d1 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -8,7 +8,7 @@ "build": "vite build", "preview": "vite preview --port 5173", "test": "jest --runInBand", - "test:ci": "mkdir -p ../build && JEST_JUNIT_OUTPUT=../build/junit-frontend.xml jest --ci --runInBand --coverage --coverageReporters=text --coverageReporters=json-summary --coverageDirectory=../build/frontend-coverage --reporters=default --reporters=jest-junit" + "test:ci": "mkdir -p ../build && JEST_JUNIT_OUTPUT_FILE=../build/junit-frontend.xml jest --ci --runInBand --coverage --coverageReporters=text --coverageReporters=json-summary --coverageDirectory=../build/frontend-coverage --reporters=default --reporters=jest-junit" }, "dependencies": { "@picocss/pico": "^2.1.1",