retrofairie/tests/Feature/ExampleTest.php
2025-02-18 17:51:40 -08:00

7 lines
129 B
PHP
Executable file

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