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
Currently, the way errors work in starlark/sonolark is that when the error occurs it stops execution completely. This works OK but for running test suites it is expected that you can fail a test and continue running others.
This requires capturing the error and returned via assert (or offering an alternative), failing the test, and continuing.
The text was updated successfully, but these errors were encountered:
Currently, the way errors work in starlark/sonolark is that when the error occurs it stops execution completely. This works OK but for running test suites it is expected that you can fail a test and continue running others.
This requires capturing the error and returned via
assert
(or offering an alternative), failing the test, and continuing.The text was updated successfully, but these errors were encountered: