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

13 lines
339 B
PHP

<?php
use App\Models\User;
test('guests are redirected to the login page', function (): void {
$this->get('/dashboard')->assertRedirect('/login');
});
test('authenticated users can visit the dashboard', function (): void {
$this->actingAs($user = User::factory()->create());
$this->get('/dashboard')->assertStatus(200);
});