import React from 'react';
import enzyme, { shallow } from 'enzyme';
import Adapter from 'enzyme-adapter-react-16';

import FloatingActionButton from './FloatingActionButton';

enzyme.configure({ adapter: new Adapter() });


describe('<FloatingActionButton />', () => {
  it.skip('should render FloatingActionButton', () => {
    const wrapper = shallow(
      <FloatingActionButton />
    );

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