14 lines
267 B
PHP
14 lines
267 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use App\Models\User;
|
|
|
|
test('confirm password screen can be rendered', function (): void {
|
|
$user = User::factory()->create();
|
|
|
|
$response = $this->actingAs($user)->get(route('password.confirm'));
|
|
|
|
$response->assertOk();
|
|
});
|