I use Serenity framework in my project for selenium integration testing. I use Screenplay pattern.
I have two features in one folder and each feature contains two scenarios. I would like to ignore whole feature, but when I add @Ignore
annotation on feature level both features are ignored. When I add @Ignore
to each scenario runner ignores some steps, but runs step with RestTemplate get request and fail because of skipped previous step.
How can I force serenity do not run all scenarios in feature but show it in reports?