fix(cypress): use no_three_ds for Calida Bluecode wallet flow#13138
Open
venkatakarthikm-maker wants to merge 2 commits into
Open
fix(cypress): use no_three_ds for Calida Bluecode wallet flow#13138venkatakarthikm-maker wants to merge 2 commits into
venkatakarthikm-maker wants to merge 2 commits into
Conversation
The Bluecode wallet test hardcoded 'three_ds' for payment intent creation but Calida's confirm config specifies 'no_three_ds'. This auth type mismatch caused the confirm call to fail with 400, cascading to undefined nextActionUrl and 500 on sync.
Code Review: Cypress Test FixFindings[nit] This is a straightforward test configuration fix. Changing [should-fix] Add a brief code comment explaining why
Example: // Calida Bluecode doesn't support 3DS authentication
"no_three_ds",No blocking issues found. |
vasanthp-jus
approved these changes
Jul 2, 2026
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.
The Bluecode wallet test hardcoded 'three_ds' for payment intent creation but Calida's confirm config specifies 'no_three_ds'. This auth type mismatch caused the confirm call to fail with 400, cascading to undefined nextActionUrl and 500 on sync.
Type of Change
Description
Changed the hardcoded
"three_ds"to"no_three_ds"in the Bluecode test context in19-Wallet.cy.jsto match the auth type declared in Calida.js. Calida's backend connector does not support 3DS — it's a pure wallet redirect flow (Bluecode QR scan).Additional Changes
Motivation and Context
Fixes #13139
How did you test it?
Ran Cypress specs 01, 02, 03, and 19 locally with
CYPRESS_CONNECTOR=calida. All 5 Bluecode wallet tests pass:Checklist