create([ 'password' => Hash::make('password'), ]); $this->actingAs($user); $response = Livewire::test('pages::settings.password') ->set('current_password', 'password') ->set('password', 'new-password') ->set('password_confirmation', 'new-password') ->call('updatePassword'); $response->assertHasNoErrors(); $this->assertTrue(Hash::check('new-password', $user->refresh()->password)); }); test('correct password must be provided to update password', function (): void { $user = User::factory()->create([ 'password' => Hash::make('password'), ]); $this->actingAs($user); $response = Livewire::test('pages::settings.password') ->set('current_password', 'wrong-password') ->set('password', 'new-password') ->set('password_confirmation', 'new-password') ->call('updatePassword'); $response->assertHasErrors(['current_password']); });