import React from 'react'; import { shallow } from 'enzyme'; import { CircularProgress } from 'material-ui-next/Progress'; const Composition = () => (

); describe('', () => { it('should render a CircularProgress', () => { const wrapper = shallow(); expect(wrapper.find(CircularProgress)).toHaveLength(1); }); });