Files
cv-roberto/tests/Feature/ExampleTest.php
Roberto Guagliardo b324c030f4 Initial commit
2025-06-19 02:02:04 +02:00

8 lines
129 B
PHP

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