From ff618b4b392d583450acca3f2105683d6e471e1a Mon Sep 17 00:00:00 2001 From: leon-morival Date: Sun, 30 Nov 2025 15:23:09 +0100 Subject: [PATCH] feat: test ci/cd --- tests/Feature/ExampleTest.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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(); });