diff --git a/backend/tests/Feature/ExampleTest.php b/backend/tests/Feature/ExampleTest.php index 77932df..f3c4f54 100644 --- a/backend/tests/Feature/ExampleTest.php +++ b/backend/tests/Feature/ExampleTest.php @@ -2,17 +2,14 @@ namespace Tests\Feature; -use Illuminate\Foundation\Testing\RefreshDatabase; use Tests\TestCase; class ExampleTest extends TestCase { - use RefreshDatabase; - - public function test_returns_a_successful_response() + public function test_root_does_not_serve_a_frontend(): void { - $response = $this->get(route('home')); + $response = $this->get('/'); - $response->assertOk(); + $response->assertNotFound(); } }