textCopyInput.spec.jsx 355 B

123456789101112
  1. import React from 'react';
  2. import {mountWithTheme} 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 = mountWithTheme(<TextCopyInput>Text to Copy</TextCopyInput>);
  7. expect(wrapper).toSnapshot();
  8. });
  9. });