33 lines
689 B
PHP
33 lines
689 B
PHP
<?php
|
|
|
|
namespace Tests\Browser;
|
|
|
|
use Tests\DuskTestCase;
|
|
use Laravel\Dusk\Browser;
|
|
use Illuminate\Foundation\Testing\DatabaseMigrations;
|
|
|
|
class HomePageTest extends DuskTestCase
|
|
{
|
|
//use DatabaseMigrations;
|
|
|
|
public function setUp(): void
|
|
{
|
|
parent::setUp();
|
|
//$this->artisan('db:seed');
|
|
}
|
|
|
|
/**
|
|
* A Dusk test example.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testText()
|
|
{
|
|
$this->browse(function (Browser $browser) {
|
|
$browser->visit('/') //->dump()
|
|
->waitForText('Wave is the perfect starter kit')
|
|
->assertSeeIn('h2', 'Wave is the perfect starter kit');
|
|
});
|
|
}
|
|
}
|