Skip to content

Conversation

@rjrudin
Copy link
Contributor

@rjrudin rjrudin commented Oct 28, 2025

No description provided.

Copilot AI review requested due to automatic review settings October 28, 2025 15:13
@github-actions
Copy link

github-actions bot commented Oct 28, 2025

Copyright Validation Results
Total: 2 | Passed: 1 | Failed: 0 | Skipped: 1 | at: 2025-10-28 21:08:44 UTC | commit: b1bedff

⏭️ Skipped (Excluded) Files

  • Jenkinsfile

✅ Valid Files

  • test-complete-proxy/nodejs-ds-multipleWorker.js

✅ All files have valid copyright headers!

Copy link

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull Request Overview

This pull request re-enables a previously disabled end-to-end test for multiple worker functionality in the Jenkins CI pipeline. The test had been temporarily disabled due to failures with the new all-mlDeploy setup, but is now being re-activated.

Key Changes:

  • Re-enabled the nodejs-ds-multipleWorker.js test execution in the Jenkinsfile
  • Removed the comment explaining why the test was disabled

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Jenkinsfile Outdated
Comment on lines 103 to 105
../node_modules/.bin/mocha -R xunit --timeout 60000 -R xunit "nodejs-ds-multipleWorker.js" --reporter mocha-junit-reporter --reporter-options mochaFile=$WORKSPACE/ds-multipleWorker-results.xml || true
../node_modules/.bin/mocha -R xunit --timeout 60000 -R xunit "nodejs-ds-transactions.js" --reporter mocha-junit-reporter --reporter-options mochaFile=$WORKSPACE/ds-transactions-results.js.xml || true
../node_modules/.bin/mocha -R xunit --timeout 60000 -R xunit "nodejs-ds-dynamic.js" --reporter mocha-junit-reporter --reporter-options mochaFile=$WORKSPACE/ds-dynamic-results.xml || true
Copy link

Copilot AI Oct 28, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The -R xunit flag is specified twice in the mocha command, which will cause the second occurrence to override the first. Remove the duplicate -R xunit flag to ensure proper reporter configuration.

Suggested change
../node_modules/.bin/mocha -R xunit --timeout 60000 -R xunit "nodejs-ds-multipleWorker.js" --reporter mocha-junit-reporter --reporter-options mochaFile=$WORKSPACE/ds-multipleWorker-results.xml || true
../node_modules/.bin/mocha -R xunit --timeout 60000 -R xunit "nodejs-ds-transactions.js" --reporter mocha-junit-reporter --reporter-options mochaFile=$WORKSPACE/ds-transactions-results.js.xml || true
../node_modules/.bin/mocha -R xunit --timeout 60000 -R xunit "nodejs-ds-dynamic.js" --reporter mocha-junit-reporter --reporter-options mochaFile=$WORKSPACE/ds-dynamic-results.xml || true
../node_modules/.bin/mocha -R xunit --timeout 60000 "nodejs-ds-multipleWorker.js" --reporter mocha-junit-reporter --reporter-options mochaFile=$WORKSPACE/ds-multipleWorker-results.xml || true
../node_modules/.bin/mocha -R xunit --timeout 60000 "nodejs-ds-transactions.js" --reporter mocha-junit-reporter --reporter-options mochaFile=$WORKSPACE/ds-transactions-results.js.xml || true
../node_modules/.bin/mocha -R xunit --timeout 60000 "nodejs-ds-dynamic.js" --reporter mocha-junit-reporter --reporter-options mochaFile=$WORKSPACE/ds-dynamic-results.xml || true

Copilot uses AI. Check for mistakes.
@rjrudin rjrudin force-pushed the feature/one-test branch 2 times, most recently from be2c346 to 715d155 Compare October 28, 2025 18:10
Added Copilot-suggested fix for the "before()" function to not finish before the first test, which seems to be the problem?
@rjrudin rjrudin merged commit b65817f into develop Oct 28, 2025
3 checks passed
@rjrudin rjrudin deleted the feature/one-test branch October 30, 2025 17:41
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants