UNPKG

@cnamts/vue-dot

Version:

Implementation of our Design System for the French Health Insurance

18 lines (11 loc) 339 B
import Vue from 'vue'; import { Wrapper } from '@vue/test-utils'; import { mountComponent } from '@/tests'; import SocialMediaLinks from '../'; let wrapper: Wrapper<Vue>; describe('SocialMediaLinks', () => { it('renders correctly', () => { wrapper = mountComponent(SocialMediaLinks); expect(wrapper).toMatchSnapshot(); }); });