UNPKG

@cnamts/vue-dot

Version:

Implementation of our Design System for the French Health Insurance

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