Files
keystone/tests/Feature/DashboardTest.php
2025-03-27 12:25:27 +00:00

16 lines
392 B
PHP

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