Investigate intermittent email sign-up request stalls during e2e auth setup #12
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Summary
Email/password sign-up is still intermittently stalling before the post-auth handoff logic runs. This showed up after the task-3 redirect race fix was implemented and validated.
Evidence
bun x playwright test e2e/auth.spec.tspassed: the dedicated auth handoff suite is green.bun x playwright test e2e/analysis.spec.ts e2e/graphing.spec.ts e2e/financials.spec.ts --workers=1still had one graphing failure where the signup helper never reachedCommand Center.Create Accountwith the submit button inCreating account..., which means thesignUp.email(...)request had not completed yet.Why this is separate from issue #3
Issue #3 addressed the client-side redirect race after a successful auth mutation. The remaining failure happens earlier: the signup request itself sometimes does not complete, so the new handoff state machine never starts.
Acceptance Criteria
Creating account....Related Issues