“Cómo probar el método emitido del componente infantil Vue JS” Código de respuesta

Cómo probar el método emitido del componente infantil 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

Cómo probar el método emitido del componente infantil 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

Respuestas similares a “Cómo probar el método emitido del componente infantil Vue JS”

Preguntas similares a “Cómo probar el método emitido del componente infantil Vue JS”

Más respuestas relacionadas con “Cómo probar el método emitido del componente infantil Vue JS” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código