Files
SAE-BUT2-backend/tests/Feature/ExampleTest.php
T
2025-10-13 23:04:46 +02:00

8 lines
147 B
PHP

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