Files
logisticsAPI/tests/Feature/Auth/PasswordConfirmationTest.php
2026-02-20 08:40:00 +01:00

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