Files
zenithar/tests/Feature/ExampleTest.php
2025-01-04 12:55:06 -03:00

8 lines
129 B
PHP

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