authentikate/tests/Feature/DashboardTest.php
Javier Feliz 292ec10b48
Some checks failed
linter / quality (push) Successful in 4m37s
tests / ci (push) Failing after 8m58s
Invitation system test
2025-08-02 14:11:43 -04:00

10 lines
213 B
PHP

<?php
use App\Models\User;
uses(\Illuminate\Foundation\Testing\RefreshDatabase::class);
test('guests are redirected to the login page', function () {
$this->get('/dashboard')->assertRedirect('/login');
});