sintonia_webapp/tests/Feature/ExampleTest.php
2024-10-04 15:29:16 +02:00

7 lines
129 B
PHP

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