Files
libra/tests/Feature/Auth/PasswordConfirmationTest.php
T
Naser Mansour ff83974f4a First commit
2025-12-20 20:26:03 +02:00

11 lines
241 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->assertStatus(200);
});