Files
libra/tests/Feature/ExampleTest.php
T
2025-12-26 20:05:03 +02:00

8 lines
141 B
PHP

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