api/tests/Feature/ExampleTest.php

8 lines
154 B
PHP

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