scala - How to disable a scenario in jbehave? -


I am adding meta tags: Meta: leave the truth in the story file after the scenario: before the runner I used the @UsingEmbadder ("+ Skip"). This particular scenario should be omitted according to my understanding.

.story file

  Scenario: Xyz meta: has been aborted ...  

.scala file

  @UsingEmbedder (metaFilters = Array ("- skip")) square foo {}  

I'm new to jbehave. So already I apologize if I am not able to make my question properly.


Comments