Initial commit of the L'Ami Fiduciaire SaaS platform built on Laravel 12, Vue 3, Inertia.js 2, and Tailwind CSS 4. Story 0.1 (rename folders to declarations in database) is implemented and code-reviewed: migration, rollback, and 6 Pest tests all passing. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
22 lines
568 B
PHP
22 lines
568 B
PHP
<?php
|
|
|
|
use App\Models\User;
|
|
use Inertia\Testing\AssertableInertia as Assert;
|
|
|
|
test('confirm password screen can be rendered', function () {
|
|
$user = User::factory()->create();
|
|
|
|
$response = $this->actingAs($user)->get(route('password.confirm'));
|
|
|
|
$response->assertOk();
|
|
|
|
$response->assertInertia(fn (Assert $page) => $page
|
|
->component('auth/ConfirmPassword'),
|
|
);
|
|
});
|
|
|
|
test('password confirmation requires authentication', function () {
|
|
$response = $this->get(route('password.confirm'));
|
|
|
|
$response->assertRedirect(route('login'));
|
|
}); |