0
我使用laravel 5.4創建的應用程序Laravel黃昏不工作
從我的默認.ENV文件設置:
APP_ENV=local
APP_KEY=base64:cMF768MPZ4ssHqG0InAUBnfvT4Ca0VaxsT6RwO3Geco=
APP_DEBUG=true
APP_LOG_LEVEL=debug
APP_URL=http://localhost:8000
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=db_local
DB_USERNAME=root
DB_PASSWORD=123456
複製我的默認.ENV和重命名爲.env.dusk後:
APP_ENV=local
APP_KEY=base64:cMF768MPZ4ssHqG0InAUBnfvT4Ca0VaxsT6RwO3Geco=
APP_DEBUG=true
APP_LOG_LEVEL=debug
APP_URL=http://localhost:8000
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=db_testing
DB_USERNAME=root
DB_PASSWORD=123456
當我運行php artisan serve
,然後將其重命名我的默認.ENV文件.env.backup的php artisan dusk
和.env.dusk到.ENV
但我一直在我的默認數據庫中運行遷移,而不是在我的測試數據庫中運行。
可能重複之前運行
php artisan config:clear
(http://stackoverflow.com/questions/43049060/laravel-dusk-not-working-env-dusk-local ) – apokryfos你看https://github.com/laravel/dusk/issues/96 –