fix(e2e): raise live-ui-payment card-entry timeout to 240s (was hard-timeout)#205
Merged
Merged
Conversation
The full flow (Razorpay subscription page → checkout iframe → card → RBI mandate modal → 3DS/OTP) + the up-to-90s tier poll exceeds Playwright's 120s default and HARD-times-out before the resilient soft-skip/assert can run — so the e2e-prod suite went red on a timeout instead of either asserting Pro or soft-skipping. test.setTimeout(240_000) gives the happy path room to complete and lets the soft-skip paths execute. (Contract leg + backend webhook-injection test unchanged.) Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
size-limit report 📦
|
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 e2e-prod run failed with Test timeout of 120000ms exceeded on the full card-entry leg: the multi-step Razorpay subscription drive + the up-to-90s tier poll exceeds Playwright's 120s default and hard-times-out before the resilient soft-skip/assert can run.
test.setTimeout(240_000)lets the happy path complete (assert Pro) or the soft-skip fire cleanly — so e2e-prod is green either way. Contract leg + api webhook-injection test unchanged.🤖 Generated with Claude Code