returnButton.spec.jsx 325 B

123456789101112
  1. import React from 'react';
  2. import {mountWithTheme} from 'sentry-test/enzyme';
  3. import ReturnButton from 'app/views/settings/components/forms/returnButton';
  4. describe('returnButton', function () {
  5. it('renders', function () {
  6. const wrapper = mountWithTheme(<ReturnButton />);
  7. expect(wrapper).toSnapshot();
  8. });
  9. });