Skip to content

Commit

Permalink
Add fix for the path for test-results
Browse files Browse the repository at this point in the history
  • Loading branch information
deepjyoti30-st committed Dec 4, 2024
1 parent 50d8fc2 commit 1be078d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .circleci/config_continue.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:
- run: update-alternatives --install "/usr/bin/javac" "javac" "/usr/java/jdk-15.0.1/bin/javac" 2
- run: (cd .circleci/ && ./doBackendSDKTests.sh << parameters.cdi-version >> << parameters.fdi-version >>)
- store_test_results:
path: test-results/junit.xml
path: ~/backend-sdk-testing/test-results/junit.xml
- slack/status
test-website:
docker:
Expand Down
2 changes: 1 addition & 1 deletion .circleci/setupAndTestBackendSDKWithFreeCore.sh
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ export multi="spec=- mocha-junit-reporter=$MOCHA_FILE"
mkdir -p test-results
TEST_FILES=$(circleci tests glob "test/**/*.test.js")
echo "$TEST_FILES" | circleci tests run --command="xargs npx mocha mocha --reporter mocha-multi --node-option no-experimental-fetch -r test/fetch-polyfill.mjs --timeout 500000 --no-config" --verbose --split-by=timings
ls -al test-results
ls -al ~/backend-sdk-testing/test-results

# kill test-server
kill $(lsof -t -i:$API_PORT)

0 comments on commit 1be078d

Please sign in to comment.