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