import * as React from 'react'; import { mount } from 'enzyme'; import ListItemSelect, { listItemSelectBuilder } from '..'; import { listItemSelectTestkitFactory } from '../../../testkit'; import { listItemSelectTestkitFactory as listItemSelectEnzymeTestkitFactory } from '../../../testkit/enzyme'; async function testkits() { const vanilla = listItemSelectTestkitFactory({ dataHook: 'hi', wrapper: document.createElement('div'), }); await vanilla.exists(); const enzyme = listItemSelectEnzymeTestkitFactory({ dataHook: 'hi', wrapper: mount(
), }); } function ListItemSelectWithMandatoryProps() { return