2025-10-16 14:22:46 +02:00
|
|
|
<?php
|
|
|
|
|
|
2025-10-16 14:22:58 +02:00
|
|
|
test('returns a successful response', function () {
|
|
|
|
|
$response = $this->get(route('home'));
|
2025-10-16 14:22:46 +02:00
|
|
|
|
2025-10-16 14:22:58 +02:00
|
|
|
$response->assertStatus(200);
|
2025-10-20 22:10:08 +02:00
|
|
|
});
|