Files
imail/tests/Feature/ExampleTest.php
2025-09-29 01:08:34 +05:30

7 lines
136 B
PHP

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