Files
AFC-Demo/tests/Feature/NavigationTest.php
T

13 lines
281 B
PHP

<?php
use App\Models\User;
it('displays upload link in navigation for authenticated users', function () {
$user = User::factory()->create();
$this->actingAs($user)
->get('/dashboard')
->assertSee('Datei-Upload')
->assertSee(route('upload'));
});