thats-me/backend/tests/Feature/DashboardTest.php
2025-04-01 10:49:26 +02:00

16 lines
No EOL
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);
});