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