diff --git a/app/components/register/__tests__/PasswordInput.test.ts b/app/components/register/__tests__/PasswordInput.test.ts index b5ea609..fd37100 100644 --- a/app/components/register/__tests__/PasswordInput.test.ts +++ b/app/components/register/__tests__/PasswordInput.test.ts @@ -9,17 +9,17 @@ describe('PasswordInput', () => { global: { stubs: { UInput: { - template: '', + template: '', props: ['type', 'disabled', 'modelValue', 'placeholder'], }, UButton: { - template: '', - props: ['disabled'], + template: '', + props: ['disabled', 'icon', 'variant', 'size'], emits: ['click'], }, UFormField: { - template: '
', - props: ['label'], + template: '
{{ label }}
', + props: ['label', 'required'], }, }, }, @@ -34,17 +34,17 @@ describe('PasswordInput', () => { global: { stubs: { UInput: { - template: '', + template: '', props: ['type', 'disabled', 'modelValue', 'placeholder'], }, UButton: { - template: '', - props: ['disabled'], + template: '', + props: ['disabled', 'icon', 'variant', 'size'], emits: ['click'], }, UFormField: { - template: '
', - props: ['label'], + template: '
{{ label }}
', + props: ['label', 'required'], }, }, }, @@ -60,17 +60,17 @@ describe('PasswordInput', () => { global: { stubs: { UInput: { - template: '', + template: '', props: ['type', 'disabled', 'modelValue', 'placeholder'], }, UButton: { - template: '', - props: ['disabled'], + template: '', + props: ['disabled', 'icon', 'variant', 'size'], emits: ['click'], }, UFormField: { - template: '
', - props: ['label'], + template: '
{{ label }}
', + props: ['label', 'required'], }, }, }, @@ -84,17 +84,17 @@ describe('PasswordInput', () => { global: { stubs: { UInput: { - template: '', + template: '', props: ['type', 'disabled', 'modelValue', 'placeholder'], }, UButton: { - template: '', - props: ['disabled'], + template: '', + props: ['disabled', 'icon', 'variant', 'size'], emits: ['click'], }, UFormField: { - template: '
', - props: ['label'], + template: '
{{ label }}
', + props: ['label', 'required'], }, }, },