-
Notifications
You must be signed in to change notification settings - Fork 555
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Code that calls panic is NOT reported as such #98
Comments
@swaits - Ok, this is a really "fun" one. It turns out that your code was calling The only way I was able to discover this was by commenting out the panics in the I wish there was something more I could do here to help but unfortunately, there simply is no way to know that |
Well, 10 years later with the release of Go 1.21, we finally have closure!
|
Wow, nice @mdwhatcott! |
@swaits submitted an example that called
panic
yet GoConvey calmly reported no errors. As expected, execution stopped after thepanic
because none of the assertions that followed the panic were executed or reported. Very strange.The text was updated successfully, but these errors were encountered: