singleloginsystem/tests/Feature/Auth/PasswordConfirmationTest.php
2026-05-08 07:19:08 +00:00

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();
});