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(); - } -}