meowsic/tests/Feature/ExampleTest.php
2024-11-05 18:05:41 +02:00

7 lines
129 B
PHP

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