Files

8 lines
135 B
PHP
Raw Permalink Normal View History

2025-02-08 15:05:41 +01:00
<?php
2025-09-24 20:31:32 +02:00
it('returns a successful response', function (): void {
2025-02-08 15:06:14 +01:00
$response = $this->get('/');
2025-02-08 15:05:41 +01:00
2025-02-08 15:06:14 +01:00
$response->assertStatus(200);
});