import {render} from '@testing-library/vue'; import N8nButton from "../Button.vue"; import ElButton from "../overrides/ElButton.vue"; const slots = { default: 'Button', }; const stubs = ['n8n-spinner', 'n8n-icon']; describe('components', () => { describe('N8nButton', () => { it('should render correctly', () => { const wrapper = render(N8nButton, { slots, stubs, }); expect(wrapper.html()).toMatchSnapshot(); }); describe('props', () => { describe('loading', () => { it('should render loading spinner', () => { const wrapper = render(N8nButton, { props: { loading: true, }, slots, stubs, }); expect(wrapper.html()).toMatchSnapshot(); }); }); describe('icon', () => { it('should render icon button', () => { const wrapper = render(N8nButton, { props: { icon: 'plus-circle', }, slots, stubs, }); expect(wrapper.html()).toMatchSnapshot(); }); }); }); describe('overrides', () => { it('should render correctly', () => { const wrapper = render(ElButton, { props: { icon: 'plus-circle', type: 'secondary', }, slots, stubs, }); expect(wrapper.html()).toMatchSnapshot(); }); }); }); });