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
This will still throw an error since foo() will throw an error and the remaining lines won't execute. My main use case for FactCheck is that tests keep running even if a single line fails. Would you consider the best way to go about this being to do something like @fact foo() => anything or would it make sense to change the implementation of FactCheck such that if there is an error in the facts block, other facts blocks continue running? Thanks!
The text was updated successfully, but these errors were encountered:
Consider a case like this:
This will still throw an error since
foo()
will throw an error and the remaining lines won't execute. My main use case for FactCheck is that tests keep running even if a single line fails. Would you consider the best way to go about this being to do something like@fact foo() => anything
or would it make sense to change the implementation of FactCheck such that if there is an error in thefacts
block, otherfacts
blocks continue running? Thanks!The text was updated successfully, but these errors were encountered: