import React from 'react'; import AccordionList from './index'; const data = { title: 'AccordionList', }; describe('AccordionList', () => { const defaultElement = AccordionList; let wrapper; beforeEach(() => { wrapper = shallow(defaultElement); }); it('should render correctly', () => { expect(wrapper).toMatchSnapshot(); }); });