singleloginsystem/tests/Feature/ExampleTest.php
2026-05-08 07:19:08 +00:00

10 lines
166 B
PHP

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