dress/tests/Feature/ExampleTest.php
2026-04-30 14:32:42 +07:00

8 lines
138 B
PHP

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