Files
numstation-web/tests/Browser/UserProfileTest.php

27 lines
563 B
PHP
Raw Normal View History

2023-12-22 12:35:55 +08:00
<?php
namespace Tests\Browser;
use App\Models\User;
use Tests\DuskTestCase;
use Laravel\Dusk\Browser;
use Illuminate\Foundation\Testing\DatabaseMigrations;
class UserProfileTest extends DuskTestCase
{
/**
* A Dusk test example.
*
* @return void
*/
public function testProfilePage()
{
$this->browse(function (Browser $browser) {
$browser->loginAs(User::where('email', '=', 'scoobydoo@gmail.com')->first())
->visit('/@scoobydoo')
->assertSee('Scooby Doo');
});
}
}