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

12 lines
235 B
PHP

<?php
use App\Models\User;
test('confirm password screen can be rendered', function () {
$user = User::factory()->create();
$response = $this->actingAs($user)->get(route('password.confirm'));
$response->assertOk();
});