test(integration-service): add Integration Service integration tests#558
Draft
maninder-uipath wants to merge 1 commit into
Draft
test(integration-service): add Integration Service integration tests#558maninder-uipath wants to merge 1 commit into
maninder-uipath wants to merge 1 commit into
Conversation
…[JAR-IS-5] Adds live-API integration tests for Connectors, Connections, Elements, and Execution, plus the integration test config wiring (test-config, unified-setup) and .env.integration.example fixtures. NOTE: This PR targets main and will fail CI until the four Integration Service feature PRs (Connections, Connectors, Elements, Execution) merge into main. Rebase onto main after they land and the suite will run green. Kept as a draft. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
| }); | ||
|
|
||
| describe('getAll', () => { | ||
| it.only('should return a non-empty list of connectors as a plain array', async () => { |
Contributor
There was a problem hiding this comment.
Debugging artifact left in — it.only will cause every other test in this file to be silently skipped when the suite runs (only this one case executes). Change to it.
Suggested change
| it.only('should return a non-empty list of connectors as a plain array', async () => { | |
| it('should return a non-empty list of connectors as a plain array', async () => { |
Contributor
PR Review SummaryOne issue found, with an inline comment posted. Everything else looks good. Issue: debugging artifact in The test call has the Everything else looks good:
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
PR 5/5 — live-API integration tests for the Integration Service (Connectors, Connections, Elements, Execution), plus integration test wiring (
test-config.ts,unified-setup.ts) and.env.integration.examplefixtures.This PR targets
mainbut the four services it tests are not yet inmain. CI will be red until the stack lands:After all four merge into
main, rebase this branch ontomainand the suite will compile and run green. Kept as a draft until then.🤖 Generated with Claude Code