diff --git a/tests/Feature/ExampleTest.php b/tests/Feature/ExampleTest.php index 8fdc86b..7e6f1bc 100644 --- a/tests/Feature/ExampleTest.php +++ b/tests/Feature/ExampleTest.php @@ -1,7 +1,7 @@ get('/'); +test('the health endpoint returns a successful response', function () { + $response = $this->get('/up'); - $response->assertStatus(200); + $response->assertSuccessful(); });