* MM-30164 fix safe area insets * Fix unit test setup mock for react-native-device-info * Add insets for edit profile screen * Fix about screen * Fix theme screen * Lock phone screen to portrait * fix unit tests * Fix autocomplete layout
29 lines
806 B
JavaScript
29 lines
806 B
JavaScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import React from 'react';
|
|
import {shallowWithIntl} from 'test/intl-test-helper';
|
|
|
|
import Preferences from '@mm-redux/constants/preferences';
|
|
|
|
import NotificationPreference from './notification_preference';
|
|
|
|
describe('NotificationPreference', () => {
|
|
const baseProps = {
|
|
testID: 'test-id',
|
|
channelId: 'channel-id',
|
|
userId: 'user-id',
|
|
notifyProps: {
|
|
push: 'default',
|
|
},
|
|
theme: Preferences.THEMES.default,
|
|
};
|
|
|
|
test('should match snapshot', () => {
|
|
const wrapper = shallowWithIntl(
|
|
<NotificationPreference {...baseProps}/>,
|
|
);
|
|
|
|
expect(wrapper.getElement()).toMatchSnapshot();
|
|
});
|
|
});
|