Skip to content

Commit

Permalink
Add changes to not use absolute path for junit results
Browse files Browse the repository at this point in the history
  • Loading branch information
deepjyoti30-st committed Dec 4, 2024
1 parent 787c017 commit 57d30de
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .circleci/config_continue.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,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_report/report_node-<< parameters.fdi-version >>.xml
path: test_report/report_node-<< parameters.fdi-version >>.xml
- slack/status
test-website:
docker:
Expand Down
3 changes: 1 addition & 2 deletions .circleci/setupAndTestBackendSDKWithFreeCore.sh
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,6 @@ fi

echo "Testing with FREE core: $coreVersion, plugin-interface: $pluginInterfaceVersion"

mkdir -p ~/test_report

cd ../../
git clone [email protected]:supertokens/supertokens-root.git
cd supertokens-root
Expand Down Expand Up @@ -117,6 +115,7 @@ export NODE_PORT=8081
export INSTALL_PATH=../supertokens-root
export multi="spec=- mocha-junit-reporter=/dev/null"

mkdir test_report
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

Expand Down

0 comments on commit 57d30de

Please sign in to comment.