UNPKG

@cnamts/vue-dot

Version:

Implementation of our Design System for the French Health Insurance

21 lines (15 loc) 404 B
import Vue from 'vue'; import { Wrapper } from '@vue/test-utils'; import { mountComponent } from '@/tests'; import NumberPicker from '../'; let wrapper: Wrapper<Vue>; describe('NumberPicker', () => { it('renders correctly', () => { wrapper = mountComponent(NumberPicker,{ propsData: { label: 'Pourriez-vous donner une note ?' } }, true); expect(wrapper).toMatchSnapshot(); }); });