ledgerrz/tests/Feature/ExampleTest.php
2026-06-15 01:03:38 +02:00

8 lines
134 B
PHP

<?php
test('returns a successful response', function () {
$response = $this->get(route('home'));
$response->assertOk();
});