Files
scraps/tests/Feature/ExampleTest.php
2024-06-22 02:11:12 +01:00

8 lines
129 B
PHP

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