-
Notifications
You must be signed in to change notification settings - Fork 23
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
[Question] How stop test? #136
Comments
@A11oW Usually, in test suites, you don't want to stop on the first failure because you want to know all of the tests that are failing. However, if you're asking because you temporarily want to be able to run one specific test in isolation, try changing More here: Does that address your question? |
@GuyPaddock Thanks for answer. Unfortunately my test have many steps, for example:
I can't check form 2 without step of "authorize" and "Go to form 1", and if form 1 is fail, test of "Go to form 2" meaningless and I would like stop all next test's. |
@A11oW The Gherkin DSL (given/when/then) may be helpful for your use-case. Each sub-step inside a |
How I can stop queue of tests in spec if one of test is fail?
if second test will is broken, third test will not run.
The text was updated successfully, but these errors were encountered: