Files
AFC-Demo/tests/Feature/ExampleTest.php
T

7 lines
140 B
PHP
Raw Normal View History

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);
});