import React from 'react';
import { mount } from 'enzyme';
import { ExploreDrawer } from './ExploreDrawer';
describe('', () => {
it('renders child element', () => {
const childElement =
Child element
;
const wrapper = mount({childElement});
expect(wrapper.text()).toBe('Child element');
});
});