import React from 'react';
import renderer from 'react-test-renderer';
import { shallow } from 'enzyme';
import Option from '../index';
describe('', () => {
it('should not crash', () => {
shallow();
});
it('should match the snapshot', () => {
const tree = renderer.create().toJSON();
expect(tree).toMatchSnapshot();
});
});