We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Currently, you can use fail() to abort a single test case with a custom message. However, the next test case will continue to run unchanged.
fail()
It would be nice if there was a failSuite() helper that would abort subsequent test cases as well.
failSuite()
Context: https://contributors.scala-lang.org/t/announcing-munit-a-new-scala-testing-library/4007/5?u=olafurpg
The text was updated successfully, but these errors were encountered:
cc/ @Daron666 will you look into this?
Sorry, something went wrong.
@olafurpg yep!
Add failSuite helper. Fixes scalameta#37
fa9a0c8
Successfully merging a pull request may close this issue.
Currently, you can use
fail()
to abort a single test case with a custom message. However, the next test case will continue to run unchanged.It would be nice if there was a
failSuite()
helper that would abort subsequent test cases as well.Context: https://contributors.scala-lang.org/t/announcing-munit-a-new-scala-testing-library/4007/5?u=olafurpg
The text was updated successfully, but these errors were encountered: