Newer
Older
FirstLaravel12 / tests / Feature / Auth / PasswordConfirmationTest.php
@motoki miura motoki miura 21 days ago 241 bytes Install Pest
<?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);
});