pint/lint

This commit is contained in:
Bob Molitor
2025-10-20 22:10:08 +02:00
parent 4dc36a768e
commit aa23eec392
16 changed files with 21 additions and 19 deletions
+1 -1
View File
@@ -74,4 +74,4 @@ test('users can logout', function () {
$response->assertRedirect(route('home'));
$this->assertGuest();
});
});
+1 -1
View File
@@ -64,4 +64,4 @@ test('already verified user visiting verification link is redirected without fir
expect($user->fresh()->hasVerifiedEmail())->toBeTrue();
Event::assertNotDispatched(Verified::class);
});
});
@@ -8,4 +8,4 @@ test('confirm password screen can be rendered', function () {
$response = $this->actingAs($user)->get(route('password.confirm'));
$response->assertStatus(200);
});
});
+1 -1
View File
@@ -63,4 +63,4 @@ test('password can be reset with valid token', function () {
return true;
});
});
});
+1 -1
View File
@@ -21,4 +21,4 @@ test('new users can register', function () {
->assertRedirect(route('dashboard', absolute: false));
$this->assertAuthenticated();
});
});
@@ -38,4 +38,4 @@ test('two factor challenge can be rendered', function () {
->call('login')
->assertRedirect(route('two-factor.login'))
->assertOk();
});
});
+1 -1
View File
@@ -13,4 +13,4 @@ test('authenticated users can visit the dashboard', function () {
$response = $this->get(route('dashboard'));
$response->assertStatus(200);
});
});
+1 -1
View File
@@ -4,4 +4,4 @@ test('returns a successful response', function () {
$response = $this->get(route('home'));
$response->assertStatus(200);
});
});
@@ -36,4 +36,4 @@ test('correct password must be provided to update password', function () {
->call('updatePassword');
$response->assertHasErrors(['current_password']);
});
});
+1 -1
View File
@@ -72,4 +72,4 @@ test('correct password must be provided to delete account', function () {
$response->assertHasErrors(['password']);
expect($user->fresh())->not->toBeNull();
});
});
@@ -67,4 +67,4 @@ test('two factor authentication disabled when confirmation abandoned between req
'two_factor_secret' => null,
'two_factor_recovery_codes' => null,
]);
});
});
+1 -1
View File
@@ -2,4 +2,4 @@
test('that true is true', function () {
expect(true)->toBeTrue();
});
});