circleIndicator.spec.jsx 316 B

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