scripthost/tests/Feature/Auth/PasswordConfirmationTest.php
Javier Feliz 9b2b993418
Some checks are pending
linter / quality (push) Waiting to run
tests / ci (push) Waiting to run
Setup
2025-07-22 17:49:01 -04:00

39 lines
980 B
PHP

<?php
use App\Livewire\Auth\ConfirmPassword;
use App\Models\User;
use Livewire\Livewire;
test('confirm password screen can be rendered', function () {
$user = User::factory()->create();
$response = $this->actingAs($user)->get('/confirm-password');
$response->assertStatus(200);
});
test('password can be confirmed', function () {
$user = User::factory()->create();
$this->actingAs($user);
$response = Livewire::test(ConfirmPassword::class)
->set('password', 'password')
->call('confirmPassword');
$response
->assertHasNoErrors()
->assertRedirect(route('dashboard', absolute: false));
});
test('password is not confirmed with invalid password', function () {
$user = User::factory()->create();
$this->actingAs($user);
$response = Livewire::test(ConfirmPassword::class)
->set('password', 'wrong-password')
->call('confirmPassword');
$response->assertHasErrors(['password']);
});