bootstrap-vue
Version:
With more than 85 components, over 45 available plugins, several directives, and 1000+ icons, BootstrapVue provides one of the most comprehensive implementations of the Bootstrap v4 component and grid system available for Vue.js v2.6, complete with extens
53 lines (45 loc) • 1.31 kB
JavaScript
import { mount } from '@vue/test-utils'
import { waitNT } from '../../tests/utils'
import { clickOutMixin } from './click-out'
describe('utils/click-out', () => {
it('works', async () => {
let count = 0
const App = {
mixins: [clickOutMixin],
// `listenForClickOut` comes from the mixin data
created() {
this.listenForClickOut = true
},
methods: {
clickOutHandler() {
count++
}
},
render(h) {
return h('div', [h('button', 'button')])
}
}
const wrapper = mount(App, {
attachTo: document.body
})
const clickEvent = new MouseEvent('click')
expect(wrapper).toBeDefined()
expect(count).toBe(0)
expect(wrapper.vm.listenForClickOut).toBe(true)
// When `this.listenForClickOut` is `true`
expect(count).toBe(0)
await wrapper.find('button').trigger('click')
expect(count).toBe(0)
await wrapper.trigger('click')
expect(count).toBe(0)
document.dispatchEvent(clickEvent)
await waitNT(wrapper.vm)
expect(count).toBe(1)
// When `this.listenForClickOut` is `false`
await wrapper.setData({ listenForClickOut: false })
document.dispatchEvent(clickEvent)
await waitNT(wrapper.vm)
expect(count).toBe(1)
wrapper.destroy()
})
})