Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 543 Bytes

trigger.md

File metadata and controls

26 lines (19 loc) · 543 Bytes

trigger(eventName)

Triggers an event on every Wrapper in the WrapperArray DOM node.

Note every Wrapper must contain a Vue instance.

  • Arguments:

    • {string} eventName
  • Example:

import { mount } from '@vue/test-utils'
import { expect } from 'chai'
import sinon from 'sinon'
import Foo from './Foo.vue'

const clickHandler = sinon.stub()
const wrapper = mount(Foo, {
  propsData: { clickHandler }
})

const divArray = wrapper.findAll('div')
divArray.trigger('click')
expect(clickHandler.called).toBe(true)