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