circleIndicator.spec.jsx 288 B

12345678910
  1. import {mountWithTheme} from 'sentry-test/enzyme';
  2. import CircleIndicator from 'app/components/circleIndicator';
  3. describe('CircleIndicator', function () {
  4. it('renders', function () {
  5. const wrapper = mountWithTheme(<CircleIndicator />);
  6. expect(wrapper).toSnapshot();
  7. });
  8. });