Fix Playwright test selector and clean up debug logging

- Use correct aria-label for Copy button selector
- Remove verbose debug console.log statements
- Maintain robust overlay closing functionality
- Test now passes for unregistered user onboarding flow
This commit is contained in:
Matthew Raymer
2025-07-10 09:04:29 +00:00
parent b35c1d693f
commit a9d14e0988
4 changed files with 105 additions and 25 deletions

View File

@@ -13,10 +13,10 @@ export type NotifyFunction = (
// Standard timeouts
export const TIMEOUTS = {
BRIEF: 1000, // Very brief toasts ("Sent..." messages)
SHORT: 2000, // Short notifications (clipboard copies, quick confirmations)
SHORT: 6000, // Short notifications (clipboard copies, quick confirmations)
STANDARD: 3000, // Standard notifications (success messages, general info)
LONG: 5000, // Longer notifications (errors, warnings, important info)
VERY_LONG: 7000, // Very long notifications (complex operations)
LONG: 8000, // Longer notifications (errors, warnings, important info)
VERY_LONG: 10000, // Very long notifications (complex operations)
MODAL: -1, // Modal confirmations (no auto-dismiss)
} as const;