test: Removed unnecessary slots
This commit is contained in:
parent
9540e37226
commit
13362a703a
@ -161,7 +161,7 @@ describe('FormularioForm', () => {
|
|||||||
})
|
})
|
||||||
|
|
||||||
// Replacement test for the above test - not quite as good of a test.
|
// Replacement test for the above test - not quite as good of a test.
|
||||||
it('updates calls setFieldValue on form when a field contains a populated v-model on registration', () => {
|
it('Updates calls setFieldValue on form when a field contains a populated v-model on registration', () => {
|
||||||
const wrapper = mount(FormularioForm, {
|
const wrapper = mount(FormularioForm, {
|
||||||
propsData: {
|
propsData: {
|
||||||
formularioValue: { test: '123' }
|
formularioValue: { test: '123' }
|
||||||
@ -220,14 +220,6 @@ describe('FormularioForm', () => {
|
|||||||
it('Receives a form-errors prop and displays it', async () => {
|
it('Receives a form-errors prop and displays it', async () => {
|
||||||
const wrapper = mount(FormularioForm, {
|
const wrapper = mount(FormularioForm, {
|
||||||
propsData: { formErrors: ['first', 'second'] },
|
propsData: { formErrors: ['first', 'second'] },
|
||||||
scopedSlots: {
|
|
||||||
default: `
|
|
||||||
<div>
|
|
||||||
<span v-for="error in props.formErrors">{{ error }}</span>
|
|
||||||
<FormularioInput name="name" />
|
|
||||||
</div>
|
|
||||||
`
|
|
||||||
}
|
|
||||||
})
|
})
|
||||||
await flushPromises()
|
await flushPromises()
|
||||||
expect(wrapper.vm.mergedFormErrors.length).toBe(2)
|
expect(wrapper.vm.mergedFormErrors.length).toBe(2)
|
||||||
@ -262,17 +254,8 @@ describe('FormularioForm', () => {
|
|||||||
})
|
})
|
||||||
|
|
||||||
it('Is able to display multiple errors on multiple elements', async () => {
|
it('Is able to display multiple errors on multiple elements', async () => {
|
||||||
const wrapper = mount(FormularioForm, {
|
const errors = { inputA: ['first'], inputB: ['first', 'second']}
|
||||||
propsData: {
|
const wrapper = mount(FormularioForm, { propsData: { errors } })
|
||||||
errors: { inputA: ['first'], inputB: ['first', 'second']},
|
|
||||||
},
|
|
||||||
slots: {
|
|
||||||
default: `
|
|
||||||
<FormularioInput name="inputA" />
|
|
||||||
<FormularioInput name="inputB" />
|
|
||||||
`
|
|
||||||
},
|
|
||||||
})
|
|
||||||
|
|
||||||
await wrapper.vm.$nextTick()
|
await wrapper.vm.$nextTick()
|
||||||
|
|
||||||
@ -282,14 +265,7 @@ describe('FormularioForm', () => {
|
|||||||
})
|
})
|
||||||
|
|
||||||
it('Can set multiple field errors with setErrors()', async () => {
|
it('Can set multiple field errors with setErrors()', async () => {
|
||||||
const wrapper = mount(FormularioForm, {
|
const wrapper = mount(FormularioForm)
|
||||||
slots: {
|
|
||||||
default: `
|
|
||||||
<FormularioInput name="inputA" />
|
|
||||||
<FormularioInput name="inputB" />
|
|
||||||
`
|
|
||||||
},
|
|
||||||
})
|
|
||||||
|
|
||||||
expect(Object.keys(wrapper.vm.mergedFieldErrors).length).toBe(0)
|
expect(Object.keys(wrapper.vm.mergedFieldErrors).length).toBe(0)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user