import React from 'react'; import { render, screen } from '@testing-library/react'; import { Person as ProfileIcon } from '@transferwise/icons'; import Option, { Props as OptionProps } from './Option'; describe('Option', () => { const defaultProps: OptionProps = { testId: 'test-option', label: 'Option Label', value: 'option-value', }; const renderOption = (props: Partial> = {}) => { return render(