feat: test ci/cd

This commit is contained in:
leon-morival 2025-11-30 15:23:09 +01:00
parent ca78d80001
commit ff618b4b39
1 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,7 @@
<?php
test('the application returns a successful response', function () {
$response = $this->get('/');
test('the health endpoint returns a successful response', function () {
$response = $this->get('/up');
$response->assertStatus(200);
$response->assertSuccessful();
});