admin()->createQuietly(); $this->actingAs($admin) ->get("/monthly-usage") ->assertOk(); } public function testEmployeeCannotSeeVacationsMonthlyUsage(): void { $user = User::factory()->createQuietly(); $this->actingAs($user) ->get("/monthly-usage") ->assertForbidden(); } }