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
Hi! I'm using karate.abort() feature but it seems that it is not working as expected.
karate.abort()
Given the following scenario:
* configure abortedStepsShouldPass = false * if (true) karate.abort()
In this case, the test result will be failed. The expected result should be skipped.
* configure abortedStepsShouldPass = true * if (true) karate.abort()
In this case, the test result will be passed. The expected result should be skipped.
I'm using:
Maybe I'm understanding wrongly this feature, but I think the idea is when its fail return a skipped result.
Thanks a lot
The text was updated successfully, but these errors were encountered:
@beatrizlopez sorry my understanding is abortedStepsShouldPass = false means it WILL be failed (depending on the version of cucumber reports)
abortedStepsShouldPass = false
please go through this carefully: #755 (comment)
if you still feel this has to be re-opened, you HAVE to follow this process: https://github.com/intuit/karate/wiki/How-to-Submit-an-Issue
Sorry, something went wrong.
No branches or pull requests
Hi! I'm using
karate.abort()
feature but it seems that it is not working as expected.Given the following scenario:
In this case, the test result will be failed. The expected result should be skipped.
Given the following scenario:
In this case, the test result will be passed. The expected result should be skipped.
I'm using:
Maybe I'm understanding wrongly this feature, but I think the idea is when its fail return a skipped result.
Thanks a lot
The text was updated successfully, but these errors were encountered: