Files
many-notes/tests/Feature/ExampleTest.php
2025-01-26 19:08:39 +00:00

10 lines
166 B
PHP

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