circleIndicator.spec.jsx 291 B

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