From 8d7e3d1f4bd231063570e54705023275bb15971f Mon Sep 17 00:00:00 2001 From: Rhys Lees <43909932+RhysLees@users.noreply.github.com> Date: Thu, 26 Oct 2023 16:45:07 +0200 Subject: [PATCH] WIP --- stubs/tests/Auth/Feature/LoginControllerTest.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/stubs/tests/Auth/Feature/LoginControllerTest.php b/stubs/tests/Auth/Feature/LoginControllerTest.php index e9485c8..397061a 100644 --- a/stubs/tests/Auth/Feature/LoginControllerTest.php +++ b/stubs/tests/Auth/Feature/LoginControllerTest.php @@ -37,4 +37,5 @@ ->assertRedirect(); assertAuthenticated(null, $user); -})->group('auth', 'login'); +})->group('auth', 'login') + ->skip(fn () => config('laravel-auth.features.basic') === false, 'This test is not applicable when basic auth is disabled');