import React from 'react'; import Usp from './index'; const data = { items: ['u', 's', 'p'], }; describe('Usp', () => { const defaultElement = ; let wrapper; beforeEach(() => { wrapper = shallow(defaultElement); }); it('should render correctly', () => { expect(wrapper).toMatchSnapshot(); }); });