import * as React from 'react'; import { shallow } from 'enzyme'; import FlySelect from './FlySelect'; import TestComponentPropUtils from '../../../utils/TestComponentPropUtils'; describe('FlySelect', () => { it('renders without crashing', () => { shallow( {}} />); }); it('renders basic react props like id, className, and style as element attributes', () => { const shallowWrapper = shallow( {}} {...TestComponentPropUtils.basicReactProps} /> ); TestComponentPropUtils.expectsBasicReactProps(shallowWrapper, false); }); });