Allows to exclude scenarios from a feature file
##Usage
-
Install plugin:
$composer require monash/behat-exclude-scenario-name --dev
-
Configure the filter in behat.yml file as below: Add the filter under your suite in which you want to exclude scenarios
# behat.yml default: filters: exclude-scenario-names: - scenario 1 - scenario 2 - scenario 3
-
Add below lines as extension to make it available for Extension manager:
# behat.yml default: ... extensions: Monash\BehatExcludeScenarioName: ~
where, '~' means empty arguments. Scenarios to exclude should be added under 'filters' tag in step 2.
-
That's it, it excludes all the scenarios mentioned under filters: