* Theme selection screen (initial commit) PR Review changes Add custom theme option for users who are already using a custom theme Fix for limited allowed themes Selected item case fix Memoized available themes request, other optimizations updated snapshots * Custom theme option changes - title. spacing, save option on state for life-cycle of screen
33 lines
1.1 KiB
JavaScript
33 lines
1.1 KiB
JavaScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import React from 'react';
|
|
import {shallow} from 'enzyme';
|
|
import SettingsItem from 'app/screens/settings/settings_item';
|
|
import Preferences from 'mattermost-redux/constants/preferences';
|
|
|
|
import DisplaySettings from './display_settings';
|
|
|
|
jest.mock('react-intl');
|
|
|
|
describe('DisplaySettings', () => {
|
|
const baseProps = {
|
|
theme: Preferences.THEMES.default,
|
|
enableTheme: false,
|
|
enableTimezone: false,
|
|
navigator: {push: () => {}}, // eslint-disable-line no-empty-function
|
|
};
|
|
|
|
test('should match snapshot', () => {
|
|
const wrapper = shallow(
|
|
<DisplaySettings {...baseProps}/>,
|
|
);
|
|
|
|
expect(wrapper.getElement()).toMatchSnapshot();
|
|
expect(wrapper.find(SettingsItem).length).toBe(1);
|
|
wrapper.setProps({enableTheme: true});
|
|
expect(wrapper.find(SettingsItem).length).toBe(2);
|
|
wrapper.setProps({enableTimezone: true});
|
|
expect(wrapper.find(SettingsItem).length).toBe(3);
|
|
});
|
|
});
|