Files
wticreatorstudio/tests/Browser/WelcomePageTest.php
Fritz Ramirez 10d0c477c8 Initial commit
2024-02-12 22:54:20 -05:00

24 lines
460 B
PHP

<?php
namespace Tests\Browser;
use Illuminate\Foundation\Testing\DatabaseMigrations;
use Laravel\Dusk\Browser;
use Tests\DuskTestCase;
class WelcomePageTest extends DuskTestCase
{
/**
* A Dusk test example.
*
* @return void
*/
public function test_for_welcome_page()
{
$this->browse(function (Browser $browser) {
$browser->visit('/')
->assertSee('All Categories');
});
}
}