forked from Ivasoft/mattermost-mobile
18 lines
555 B
JavaScript
18 lines
555 B
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 CustomTextInput from './custom_text_input';
|
|
|
|
describe('CustomTextInput', () => {
|
|
test('should render custom text input', () => {
|
|
const onPaste = jest.fn();
|
|
const text = 'My Text';
|
|
const component = shallow(
|
|
<CustomTextInput onPaste={onPaste}>{text}</CustomTextInput>,
|
|
);
|
|
expect(component).toMatchSnapshot();
|
|
});
|
|
});
|