administrativeApprover()->createQuietly(); $this->actingAs($administrativeApprover) ->get("/timesheet/january") ->assertOk(); } public function testEmployeeCannotDownloadTimesheet(): void { $user = User::factory()->createQuietly(); $this->actingAs($user) ->get("/timesheet/january") ->assertForbidden(); } }