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
Summary: creating a way for a TestSuite to halt completely on first failure/error encountered.
As of now, (and probably by design) if a TestSuite test step fails, I don't seem to have a way to tell questions-three to immediately stop the execution and run any suite teardown related steps right after. Instead, all the follow-up test steps keep running. If some context from a previous step is required for the next step, say, if the testsuite is for a composed/complex scenario of multiple steps, the entire test run will print out followup errors, "hiding"/obscuring the initial failure.
Is there an easy way to do this with questions-three as is, or any idea of a viable way to implement it as an option part of questions-three?
Example of this implemented elsewhere: --bail CLI option in newman that tells the framework to stop the check run on encountering the first check script error.
The text was updated successfully, but these errors were encountered:
Summary: creating a way for a TestSuite to halt completely on first failure/error encountered.
As of now, (and probably by design) if a TestSuite test step fails, I don't seem to have a way to tell
questions-three
to immediately stop the execution and run any suite teardown related steps right after. Instead, all the follow-up test steps keep running. If some context from a previous step is required for the next step, say, if the testsuite is for a composed/complex scenario of multiple steps, the entire test run will print out followup errors, "hiding"/obscuring the initial failure.Is there an easy way to do this with
questions-three
as is, or any idea of a viable way to implement it as an option part ofquestions-three
?Example of this implemented elsewhere:
--bail
CLI option in newman that tells the framework to stop the check run on encountering the first check script error.The text was updated successfully, but these errors were encountered: