* MM-17588 Remove navigation component from stack * MM-175986 Fix Clock Display Settings on iOS * Fix markdown and team icon currentServerUrl * Fix closing permalink logs out the user * Fix file attachment document ref * Fix applyTheme when changing a theme in the app * Feedback review * remove / when fetching the image on the markdown table on relative paths
55 lines
1.7 KiB
JavaScript
55 lines
1.7 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 Preferences from 'mattermost-redux/constants/preferences';
|
|
|
|
import {DeviceTypes} from 'app/constants';
|
|
import SettingsItem from 'app/screens/settings/settings_item';
|
|
|
|
import DisplaySettings from './display_settings';
|
|
|
|
jest.mock('react-intl');
|
|
|
|
describe('DisplaySettings', () => {
|
|
const baseProps = {
|
|
actions: {
|
|
applyTheme: jest.fn(),
|
|
goToScreen: jest.fn(),
|
|
},
|
|
theme: Preferences.THEMES.default,
|
|
enableTheme: false,
|
|
enableTimezone: false,
|
|
componentId: 'component-id',
|
|
};
|
|
|
|
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);
|
|
});
|
|
|
|
test('should match snapshot on Tablet devices', () => {
|
|
DeviceTypes.IS_TABLET = true;
|
|
|
|
const wrapper = shallow(
|
|
<DisplaySettings {...baseProps}/>,
|
|
);
|
|
|
|
expect(wrapper.getElement()).toMatchSnapshot();
|
|
expect(wrapper.find(SettingsItem).length).toBe(2);
|
|
wrapper.setProps({enableTheme: true});
|
|
expect(wrapper.find(SettingsItem).length).toBe(3);
|
|
wrapper.setProps({enableTimezone: true});
|
|
expect(wrapper.find(SettingsItem).length).toBe(4);
|
|
});
|
|
});
|