12345678910 |
- import React from 'react';
- import {shallow} from 'enzyme';
- import CircleIndicator from 'app/components/circleIndicator';
- describe('CircleIndicator', function() {
- it('renders', function() {
- const wrapper = shallow(<CircleIndicator />);
- expect(wrapper).toMatchSnapshot();
- });
- });
|