* 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
35 lines
975 B
TypeScript
35 lines
975 B
TypeScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
import {shallow} from 'enzyme';
|
|
import React from 'react';
|
|
|
|
import CustomStatusText from '@components/custom_status/custom_status_text';
|
|
import Preferences from '@mm-redux/constants/preferences';
|
|
|
|
describe('components/custom_status/custom_status_text', () => {
|
|
const baseProps = {
|
|
text: 'In a meeting',
|
|
theme: Preferences.THEMES.denim,
|
|
};
|
|
|
|
it('should match snapshot', () => {
|
|
const wrapper = shallow(
|
|
<CustomStatusText
|
|
{...baseProps}
|
|
/>,
|
|
);
|
|
|
|
expect(wrapper.getElement()).toMatchSnapshot();
|
|
});
|
|
|
|
it('should match snapshot with empty text', () => {
|
|
const wrapper = shallow(
|
|
<CustomStatusText
|
|
{...baseProps}
|
|
text={''}
|
|
/>,
|
|
);
|
|
|
|
expect(wrapper.getElement()).toMatchSnapshot();
|
|
});
|
|
});
|