Files
FlightsAPI/tests/Feature/ExampleTest.php
T
2026-04-01 09:36:48 +10:00

8 lines
147 B
PHP

<?php
test('the application returns a successful response', function () {
$response = $this->get('/');
$response->assertStatus(200);
});