You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Clear separation between success and failure cases
Better of testing
test('handles not found case',async()=>{constresult=awaitgetSomething(supabase,'non-existent');expect(result.success).toBe(false);expect(result.error.message).toBe('Something not found');});
The text was updated successfully, but these errors were encountered:
For large codebase
Benefits
The text was updated successfully, but these errors were encountered: