actor: Tester
paths:
    tests: tests
    log: tests/_output
    data: tests/_data
    support: tests/_support
    envs: tests/_envs
settings:
    bootstrap: _bootstrap.php
    colors: true
    memory_limit: 1024M
extensions:
    enabled:
        - Codeception\Extension\RunFailed
modules:
    enabled: [Filesystem, Asserts]
    config:
        WebDriver: #run: phantomjs --webdriver=4444
            url: 'http://wp47.dev/'
            browser: phantomjs
            window_size: 1024x768
            debug: true
            capabilities:
                webStorageEnabled: true
        PhpBrowser:
            url: http://wp47.dev
        Db:
            dsn: 'mysql:host=localhost;dbname=wp47'
            user: 'homestead'
            password: 'secret'
            dump: 'tests/_data/dump.sql'
            populate: true
            cleanup: false
            reconnect: true
