* 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
35 lines
1 KiB
JavaScript
35 lines
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 ReactionPicker from './reaction_picker';
|
|
|
|
import Preferences from '@mm-redux/constants/preferences';
|
|
|
|
describe('Reactions', () => {
|
|
const baseProps = {
|
|
addReaction: jest.fn(),
|
|
openReactionScreen: jest.fn(),
|
|
recentEmojis: [],
|
|
theme: Preferences.THEMES.default,
|
|
};
|
|
|
|
test('Should match snapshot with default emojis', () => {
|
|
const wrapper = shallow(<ReactionPicker {...baseProps}/>);
|
|
expect(wrapper.getElement()).toMatchSnapshot();
|
|
});
|
|
|
|
test('Should match snapshot with default emojis', () => {
|
|
const props = {
|
|
...baseProps,
|
|
recentEmojis: [
|
|
'rocket',
|
|
'100',
|
|
],
|
|
};
|
|
const wrapper = shallow(<ReactionPicker {...props}/>);
|
|
expect(wrapper.getElement()).toMatchSnapshot();
|
|
});
|
|
});
|