“Como testar o método emitido do componente filho vue js” Respostas de código

Como testar o método emitido do componente filho vue js

const stub = sinon.stub()
const wrapper = mount(ParentComponent)
 // just a simple assertion that your parent component's handler for input event was called
wrapper.setMethods({ methodToTest: sub })

// you can pass a component in `find()` method then trigger the component's event
wrapper.find(ChildComponent).trigger('input')

// assert if the listener was called
expect(stub.called).tobeTruthy()
Wide-eyed Wildebeest

Como testar o método emitido do componente filho vue js

<template>
  <div>
    <child-component ref="childRef" @custom="handleMethod" />
  </div>
</template>

const wrapper = mount(Component);
wrapper.vm.$refs.childRef.$emit('custom');
Wide-eyed Wildebeest

Respostas semelhantes a “Como testar o método emitido do componente filho vue js”

Perguntas semelhantes a “Como testar o método emitido do componente filho vue js”

Mais respostas relacionadas para “Como testar o método emitido do componente filho vue js” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código