textCopyInput.spec.jsx 327 B

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