import React from 'react' import { shallow } from 'enzyme' import Main from './main' import './enzyme-conf.spec' describe('
', function() { it('renders without a category', function() { shallow(
) }) it('renders with a category', function() { shallow(
) }) })