UNPKG

@cnamts/vue-dot

Version:

Implementation of our Design System for the French Health Insurance

53 lines (38 loc) 1.23 kB
import Vue from 'vue'; import { Wrapper } from '@vue/test-utils'; import { mountComponent } from '@/tests'; import NirField from '../'; let wrapper: Wrapper<Vue>; describe('NirField', () => { it('renders correctly', () => { wrapper = mountComponent(NirField, undefined, true); expect(wrapper).toMatchSnapshot(); }); it('renders correctly with 13 characters', () => { wrapper = mountComponent(NirField, { propsData: { nirLength: 13 } }, true); expect(wrapper).toMatchSnapshot(); }); it('renders correctly with a tooltip', () => { wrapper = mountComponent(NirField, { propsData: { tooltip: 'Information sur le NIR' } }, true); expect(wrapper).toMatchSnapshot(); }); it('displays an error message when the fields are not totally filled', async() => { wrapper = mountComponent(NirField, undefined, true); document.getSelection = jest.fn(() => null); const numberField = wrapper.find('.vd-number-field input'); const keyField = wrapper.find('.vd-key-field input'); await numberField.setValue('123'); await numberField.trigger('keydown.enter'); await keyField.setValue('1'); await keyField.trigger('keydown.enter'); expect(wrapper).toMatchSnapshot(); }); });