mirror of
https://github.com/Bigherollc/wticreatorstudio.git
synced 2026-01-16 19:05:08 -05:00
24 lines
460 B
PHP
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');
|
|
});
|
|
}
|
|
}
|