17 lines
395 B
PHP
17 lines
395 B
PHP
<?php
|
|
|
|
use App\Models\User;
|
|
|
|
it('redirects guests to the login page', function () {
|
|
$this->get('/dashboard')->assertRedirect('/login');
|
|
});
|
|
|
|
it('shows the dashboard to authenticated users', function () {
|
|
$user = User::factory()->create();
|
|
|
|
$this->actingAs($user)->get('/dashboard')
|
|
->assertOk()
|
|
->assertSee('CluPilot')
|
|
->assertSee(__('dashboard.title'));
|
|
});
|