test('renders without crashing', () => {
  const button = shallow(<Button text="Dummy text" />);

  expect(button.find('button')).toHaveLength(1);
  expect(button.hasClass('main')).toBeTruthy();