Files
imail/tests/Feature/Auth/PasswordConfirmationTest.php
2025-09-29 01:08:34 +05:30

11 lines
247 B
PHP

<?php
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->assertStatus(200);
});