topnotch_webshop/tests/Feature/DashboardTest.php

16 lines
392 B
PHP
Raw Normal View History

2025-03-25 15:02:34 -04:00
<?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);
});