ledgerrz/tests/Feature/ExampleTest.php
2026-06-15 00:30:57 +02:00

7 lines
133 B
PHP

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