Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions e2e/live-ui-payment.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,13 @@ test.describe('LIVE-UI — Razorpay TEST-card payment (free → upgrade → Pro)
browser,
request,
}) => {
// The full flow is multi-step (Razorpay subscription page → checkout iframe →
// card → RBI mandate modal → 3DS/OTP) PLUS up to a 90s tier poll, which
// exceeds Playwright's 120s default and HARD-times-out before the
// soft-skip/assert can run. Give it room so the happy path completes and the
// resilient soft-skip paths (markup undriveable / tier didn't flip) actually
// execute instead of redding the suite on a timeout.
test.setTimeout(240_000)
test.skip(!factoryArmed(), 'E2E_ACCOUNT_TOKEN unset — cannot mint a cohort account.')
test.skip(
!CARD_MODE,
Expand Down
Loading