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
"Succeeds if no actuals": {actuals: []any{}, verifier: SuccessVerifier()},
"Succeeds if last actual is nil": {actuals: []any{1, 2, nil}, verifier: SuccessVerifier()},
"Fails if last actual is an error": {actuals: []any{"abc", fmt.Errorf("expected error")}, verifier: FailureVerifier(`Error occurred: expected error`)},