Skip to content
📎 Allows to overwrite suites' default settings.
Branch: master
Clone or download
Fetching latest commit…
Cannot retrieve the latest commit at this time.
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
features
src/ServiceContainer
.gitattributes
.gitignore
.travis.yml
LICENSE
README.md
behat.yml.dist
composer.json

README.md

Suite Settings Extension License Version Build status on Linux Scrutinizer Quality Score

Allows to overwrite suites' default settings.

Usage

  1. Install it:

    $ composer require friends-of-behat/suite-settings-extension --dev
  2. Enable and configure default suite settings in your Behat configuration:

    # behat.yml
    default:
        # ...
        extensions:
            FriendsOfBehat\SuiteSettingsExtension: # the default configuration:
                paths:
                    - "features" # default one!
                contexts:
                    - "FeatureContext" # default one!
  3. Every suite you create will have those settings as the default ones.

Configuration reference

  • paths - an array, contains locations where Behat looks for *.feature files
  • contexts - an array, if there are no custom ones in suite configured, these are used

Protip!

If you've changed your paths, that they do not contain features anymore, your contexts may be not loaded properly. To ensure this, pass the same folder to built-in autoloader extension:

# behat.yml
default:
    # ...
    autoload:
        - "%paths.base%/custom_features/bootstrap" # features -> custom_features
    
    extensions:
        FriendsOfBehat\SuiteSettingsExtension:
            paths:
                - "custom_features"
You can’t perform that action at this time.