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
T.FailNow (and not T.Fatal) only stops the execution of the test method that invoked it; to stop the execution of go test, Win and Fail need to invoke os.Exit(1)
As per subject, calling
go test -fatal
(or something similar) should makeWin
andFail
useT.Fatal
rather thanT.Fail
and block the execution.The text was updated successfully, but these errors were encountered: