it('should return true if featurePreviewEnabled is true and feature is in userPreferences', () => {
    const { result } = renderHook(() => useFeaturePreview('quickReactions'), {
        wrapper: mockAppRoot()
            .withSetting('Accounts_AllowFeaturePreview', true)
            .withUserPreference('featuresPreview', [{ name: 'quickReactions', value: true }])