Files
2025-09-24 20:35:48 +02:00

8 lines
135 B
PHP

<?php
it('returns a successful response', function (): void {
$response = $this->get('/');
$response->assertStatus(200);
});