Files
BetiX/tests/Feature/DashboardTest.php
Dolo 0280278978
Some checks failed
linter / quality (push) Has been cancelled
tests / ci (8.4) (push) Has been cancelled
tests / ci (8.5) (push) Has been cancelled
Initialer Laravel Commit für BetiX
2026-04-04 18:01:50 +02:00

17 lines
375 B
PHP

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