// 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( {text} ); expect(component).toMatchSnapshot(); }); });