@cnamts/vue-dot
Version:
Implementation of our Design System for the French Health Insurance
21 lines (15 loc) • 399 B
text/typescript
import Vue from 'vue';
import { Wrapper } from '@vue/test-utils';
import { mountComponent } from '@/tests';
import ExternalLinks from '../ExternalLinks.vue';
let wrapper: Wrapper<Vue>;
describe('ExternalLinks', () => {
it('renders correctly', () => {
wrapper = mountComponent(ExternalLinks, {
propsData: {
position: 'top left'
}
});
expect(wrapper).toMatchSnapshot();
});
});