Files
telekeci/tests/Feature/ExampleTest.php
2024-10-21 14:51:30 +05:00

8 lines
129 B
PHP

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