it('should singularise items if there is only one item in the basket', () => {
    const wrapper = shallow(<BasketSummary {...props} basketCount={1} />);

    expect(wrapper).toMatchSnapshot();
  });