first commit

This commit is contained in:
benjibennn
2023-12-22 12:35:55 +08:00
commit 9f89a732d6
872 changed files with 156291 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
<?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');
});
}
}