describe('Main buttons in the game', () => {
  it('should have a class of main-button-wrapper', () => {
    const wrapper = shallow(<MainButtons />);
    expect(wrapper.is('.main-button-wrapper')).toBe(true);
  });