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

@ -0,0 +1,22 @@
<?php
namespace Tests\Feature;
use Tests\TestCase;
use Illuminate\Foundation\Testing\WithoutMiddleware;
use Illuminate\Foundation\Testing\DatabaseMigrations;
use Illuminate\Foundation\Testing\DatabaseTransactions;
class ExampleTest extends TestCase
{
/**
* A basic test example.
*
* @return void
*/
public function testBasicTest()
{
$response = $this->get('/');
$response->assertStatus(200);
}
}