import React from 'react' import { render } from '@toptal/picasso-test-utils' import { noop } from '@toptal/picasso-utils' import type { Props } from './NativeSelectOptions' import NativeSelectOptions from './NativeSelectOptions' const OPTIONS = [ { text: 'One', value: '1' }, { text: 'Two', value: '2' }, { text: 'Three', value: '3' }, ] const defaultGetItemProps = () => ({ onMouseDown: noop, onMouseEnter: noop, onClick: noop, }) const renderNativeSelectOptions = ({ selection = { isSelected: jest.fn(), isOptionSelected: jest.fn(), display: jest.fn(), }, options = OPTIONS, renderOption = option => option.text, getItemProps = defaultGetItemProps, }: Partial = {}) => render( ) describe('NativeSelectOptions', () => { it('renders', () => { const { container } = renderNativeSelectOptions() expect(container).toMatchSnapshot() }) })