inspiren-sem-tool/tests/Feature/DashboardTest.php
brian-inspiren 221d3f8173
Some checks failed
linter / quality (push) Has been cancelled
tests / ci (push) Has been cancelled
feat: sem codebase
2026-05-21 11:28:03 +08:00

13 lines
338 B
PHP

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