Files
cv4/tests/Feature/ExampleTest.php
2024-12-14 18:03:09 -05:00

8 lines
129 B
PHP

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