Migrate to organization

This commit is contained in:
Regis Freyd
2017-02-16 19:21:44 -05:00
commit 2e6760e7db
468 changed files with 72041 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
<?php
namespace Tests\Browser;
use Tests\DuskTestCase;
use Laravel\Dusk\Chrome;
use Illuminate\Foundation\Testing\DatabaseMigrations;
class ExampleTest extends DuskTestCase
{
/**
* A basic browser test example.
*
* @return void
*/
public function testBasicExample()
{
$this->browse(function ($browser) {
$browser->visit('/')
->assertSee('Laravel');
});
}
}