UNPKG

@cnamts/vue-dot

Version:

Implementation of our Design System for the French Health Insurance

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