I have a particular scenario which is not ready for testing yet. So I need to skip it in order to run the tests on other scenarios.
Scenario: Login-success Scenario:
Meta:
@skip
@ignored true
//Regular Steps
I have a particular scenario which is not ready for testing yet. So I need to skip it in order to run the tests on other scenarios.
Scenario: Login-success Scenario:
Meta:
@skip
@ignored true
//Regular Steps
You can simply skip the test using the @skip in the meta info:
Documentation on meta tags can be found here
In order to use
@skip
or@ignore true
meta in a story to skip this story,you need to configure a meta filter in configuration of your test.
Depending on how you configure your test, it could be for example:
or, in Java:
See the documentation for details: http://jbehave.org/reference/stable/meta-filtering.html