mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-13 17:05:47 +08:00
46 lines
973 B
TypeScript
46 lines
973 B
TypeScript
import { mount } from '@vue/test-utils'
|
|
import Divider from '../src/index.vue'
|
|
|
|
const AXIOM = 'Rem is the best girl'
|
|
|
|
describe('Divider.vue', () => {
|
|
test('render test', () => {
|
|
const wrapper = mount(Divider, {
|
|
slots: {
|
|
default: AXIOM,
|
|
},
|
|
})
|
|
expect(wrapper.text()).toBe(AXIOM)
|
|
})
|
|
|
|
test('direction', () => {
|
|
const wrapper = mount(Divider, {
|
|
props: {
|
|
direction: 'vertical',
|
|
},
|
|
})
|
|
expect(wrapper.classes()).toContain('el-divider--vertical')
|
|
})
|
|
|
|
test('contentPosition', () => {
|
|
const wrapper = mount(Divider, {
|
|
slots: {
|
|
default: AXIOM,
|
|
},
|
|
props: {
|
|
contentPosition: 'right',
|
|
},
|
|
})
|
|
expect(wrapper.find('.el-divider__text').classes()).toContain('is-right')
|
|
})
|
|
|
|
test('customClass', () => {
|
|
const wrapper = mount(Divider, {
|
|
props: {
|
|
class: 'customClass',
|
|
},
|
|
})
|
|
expect(wrapper.classes()).toContain('customClass')
|
|
})
|
|
})
|