Get Laravel Dusk installed using PhantomJS so it can work with Travis CI easily

This commit is contained in:
Jonny Barnes 2017-02-18 12:27:21 +00:00
parent db44423c2e
commit 94969e7f97
25 changed files with 314 additions and 1123 deletions

View file

@ -5,6 +5,7 @@ namespace App\Providers;
use App\Tag;
use App\Note;
use Validator;
use Laravel\Dusk\DuskServiceProvider;
use Illuminate\Support\ServiceProvider;
class AppServiceProvider extends ServiceProvider
@ -54,6 +55,8 @@ class AppServiceProvider extends ServiceProvider
*/
public function register()
{
//
if ($this->app->environment('local', 'testing')) {
$this->app->register(DuskServiceProvider::class);
}
}
}