textCopyInput.spec.jsx 342 B

12345678910
  1. import React from 'react';
  2. import {shallow} from 'sentry-test/enzyme';
  3. import TextCopyInput from 'app/views/settings/components/forms/textCopyInput';
  4. describe('TextCopyInput', function() {
  5. it('renders', function() {
  6. const wrapper = shallow(<TextCopyInput>Text to Copy</TextCopyInput>);
  7. expect(wrapper).toMatchSnapshot();
  8. });
  9. });