mattermost-mobile/app/screens/more_dms/selected_users/selected_users.test.js
Dean Whillier fb8238ab0b
[MM-37553] Update default themes (#5648)
* new themes and theme type updates

* update theme processing

port newer functionality from webapp

* update theme UI

including new svg-based thumbnail

* lint fixes

* update snapshots and tests

* update theme tile border approach

* remove unused path component

* remove old variable typo

* remove old variable type from theme type

* lint and snapshot updates

* update snapshots
2021-09-03 10:50:24 -04:00

70 lines
1.7 KiB
JavaScript

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
import {shallow} from 'enzyme';
import React from 'react';
import Preferences from '@mm-redux/constants/preferences';
import SelectedUsers from './selected_users.js';
describe('SelectedUsers', () => {
const baseProps = {
onRemove: jest.fn(),
maxCount: 3,
profiles: {
userId1: {
id: 'userId1',
},
userId2: {
id: 'userId2',
},
userId3: {
id: 'userId3',
},
},
selectedIds: {
userId1: true,
},
theme: Preferences.THEMES.denim,
teammateNameDisplay: 'full_name',
warnCount: 1,
};
test('should match snapshot', () => {
const wrapper = shallow(
<SelectedUsers {...baseProps}/>,
);
expect(wrapper.getElement()).toMatchSnapshot();
});
test('should match snapshot to show warning for ability to add one more user', () => {
const props = {
...baseProps,
selectedIds: {
userId2: true,
userId1: true,
},
};
const wrapper = shallow(
<SelectedUsers {...props}/>,
);
expect(wrapper.getElement()).toMatchSnapshot();
});
test('should match snapshot for no warning message', () => {
const props = {
...baseProps,
warnCount: 2,
};
const wrapper = shallow(
<SelectedUsers {...props}/>,
);
expect(wrapper.getElement()).toMatchSnapshot();
});
});