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