ramadanproject/tests/Feature/ExampleTest.php
2026-01-03 01:36:51 +01:00

7 lines
140 B
PHP

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