UNPKG

@mekari/mekari-ui-vue

Version:

--- General web components in Mekari. The components are made using vue.js as its framework. Styling of components on Mekari UI Vue uses [Mekari UI Toolkit](https://bitbucket.org/mid-kelola-indonesia/mekari-ui-toolkit/src/master/). Don't forget to import

17 lines (12 loc) 343 B
import MInputGroup from './index.vue'; import { shallowMount } from '@vue/test-utils'; describe('Mekari UI Input Group Component', () => { let wrapper; afterEach(() => { wrapper.destroy(); }); it('should match snapshot', () => { wrapper = shallowMount(MInputGroup); expect(wrapper.element).toMatchSnapshot(); }); });