Test Testing Checklist See TEST-SCENARIOS.md for detailed scenarios. --- When to Test Test when: - Feature just built by AI - Before deploying to production - After fixing a bug (verify fix works) - Users report issues (reproduce first) Don't test: - While AI is still building - Before feature is complete - Every tiny change (batch test features) Rule: Build → Test → Fix → Test again → Deploy --- Structured QA Workflow Don't test randomly. Follow this sequence every time. Step 1: Orient — What Exists? Before testing, know what you're testing. Walk through your app and list every page and feat…