Set up a fresh Laravel app

This commit is contained in:
Bob Molitor
2025-10-16 14:22:46 +02:00
commit 81a98dd9f4
112 changed files with 17024 additions and 0 deletions
@@ -0,0 +1,21 @@
<?php
namespace Tests\Feature\Auth;
use App\Models\User;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class PasswordConfirmationTest extends TestCase
{
use RefreshDatabase;
public function test_confirm_password_screen_can_be_rendered(): void
{
$user = User::factory()->create();
$response = $this->actingAs($user)->get(route('password.confirm'));
$response->assertStatus(200);
}
}