From 0d322cde063623b69b54a8547772dc48c574c0bf Mon Sep 17 00:00:00 2001 From: myrmidex Date: Sun, 22 Mar 2026 02:20:14 +0100 Subject: [PATCH] chore - Remove broken DashboardTest referencing commented-out dashboard route --- tests/Feature/DashboardTest.php | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 tests/Feature/DashboardTest.php diff --git a/tests/Feature/DashboardTest.php b/tests/Feature/DashboardTest.php deleted file mode 100644 index 2cf1dc2..0000000 --- a/tests/Feature/DashboardTest.php +++ /dev/null @@ -1,24 +0,0 @@ -get(route('dashboard'))->assertRedirect(route('login')); - } - - public function test_authenticated_users_can_visit_the_dashboard() - { - $this->actingAs($user = User::factory()->create()); - - $this->get(route('dashboard'))->assertOk(); - } -}