laracasts / Behat-Laravel-Extension

Laravel extension for Behat functional testing.
MIT License
260 stars 73 forks source link

Cipher issue #52

Closed alnutile closed 8 years ago

alnutile commented 8 years ago

Had an problem with APP_KEY not getting passed to here

vendor/laravel/framework/src/Illuminate/Encryption/Encrypter.php:37

Need to make sure it is not regression in my behat library

screenshot 2016-09-11 17 15 53

My fix for now was to add

default:
    extensions:
        Laracasts\Behat:
            env_path: .env
        Behat\MinkExtension:
            base_url: https://teamdocs-leanpub.dev
            default_session: laravel
            laravel: ~
            selenium2:
              wd_host: "http://selenium-server.dev:4444/wd/hub"
            browser_name: chrome

env_path: .env instead of leaving it commented out?

Was there are regression somewhere on this?

alnutile commented 8 years ago

phew just me not reading the install docs :( Basically I wanted to not have a .env.behat file but never uncommented the

env_path: .env