element-plus/packages/components/popconfirm/__test__/popconfirm.spec.ts
三咲智子 fbebf03d8c
refactor(components): refactor popconfirm (#3490)
* refactor(components): refactor popconfirm

* fix(components): fix path

* chore: change name

* fix
2021-09-19 18:21:23 +08:00

34 lines
756 B
TypeScript

import { h } from 'vue'
import { mount } from '@vue/test-utils'
import ElPopconfirm from '../src/popconfirm.vue'
const selector = '.el-popper'
const _mount = (props: any = {}) =>
mount(ElPopconfirm, {
props,
slots: {
reference: () =>
h('div', {
class: 'reference',
}),
},
attachTo: 'body',
})
describe('Popconfirm.vue', () => {
test('render test', async () => {
const wrapper = _mount()
const trigger = wrapper.find('.reference')
expect(document.querySelector(selector).getAttribute('style')).toContain(
'display: none'
)
await trigger.trigger('click')
expect(
document.querySelector(selector).getAttribute('style')
).not.toContain('display: none')
})
})