Hola!
Hice el test pata el button increment with value y este fue my resultado:
it('button incrementWith clicked should increment the state and it should be rendered with the input value', async () => {
const wrapper = shallowMount(HelloWorld)
const component = wrapper.find('#but-increment-value');
const input =wrapper.find('#input-increment')
input.setValue(5)
await component.trigger('click')
expect(wrapper.find('#header-counter').text()).toBe('counter: 5')
expect(wrapper.vm.inputValue).toBe("5")
})
😃
¿Quieres ver más aportes, preguntas y respuestas de la comunidad?