Files
memefast/tests/Feature/DashboardTest.php
2025-05-28 12:59:01 +08:00

16 lines
383 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');
});
test('authenticated users can visit the dashboard', function () {
$this->actingAs($user = User::factory()->create());
$this->get('/dashboard')->assertOk();
});