import { render } from '@testing-library/vue'; import N8nSelect from '../Select.vue'; import N8nOption from '../../N8nOption/Option.vue'; describe('components', () => { describe('N8nSelect', () => { it('should render correctly', () => { const wrapper = render(N8nSelect, { components: { N8nOption, }, slots: { default: [ '1', '2', '3', ], }, }); expect(wrapper.html()).toMatchSnapshot(); }); }); });