b2in/tests/Feature/ExampleTest.php
2025-10-20 17:50:35 +02:00

7 lines
131 B
PHP

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