mattermost-mobile/app/screens/interactive_dialog/dialog_introduction_text.test.js
Elias Nahum dcaaaee44c
MM-30164 fix safe area insets (#4979)
* 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
2020-11-23 20:10:09 -03:00

38 lines
1.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 Preferences from '@mm-redux/constants/preferences';
import DialogIntroductionText from './dialog_introduction_text.js';
describe('DialogIntroductionText', () => {
const baseProps = {
theme: Preferences.THEMES.default,
value: '**bold** *italic* [link](https://mattermost.com/) <br/> [link target blank](!https://mattermost.com/)',
};
test('should render the introduction text correctly', () => {
const wrapper = shallow(
<DialogIntroductionText
{...baseProps}
/>,
);
expect(wrapper.getElement()).toMatchSnapshot();
});
test('should not render the component with an empty value', () => {
baseProps.value = '';
const wrapper = shallow(
<DialogIntroductionText
{...baseProps}
/>,
);
expect(wrapper.getElement()).toMatchSnapshot();
});
});