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
Current implementation of tests is using fmt package for logging results instead of t.Error, t.Errorf, or t.Fatal. This makes the test pass even if an error occurs.
Additional context
Example from the current code:
client, err:=supabase.NewClient(API_URL, API_KEY, nil)
iferr!=nil {
fmt.Println("cannot initialize client", err) // This doesn't fail the test
}