import { h } from 'preact'; import { MultiSelect } from '../src/multi-select'; import { countries } from './countries'; import { query, shallow } from './preact-util'; const forceImportOfH = h; describe('MultiSelect', () => { it('renders with empty values', () => { const tree = shallow( { /* noop */ }} /> ); expect(tree).toMatchSnapshot(); }); it('renders with values', () => { const tree = shallow( { /* noop */ }} /> ); expect(tree).toMatchSnapshot(); }); });