import React from 'react'; import { mount } from 'enzyme'; import Histogram from '../Histogram'; describe('', () => { it('renders without exploding', () => { const wrapper = mount(); expect(wrapper.exists()).toBe(true); }) });