12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- import { mount } from '@vue/test-utils'
- import { describe, expect, test } from 'vitest'
- import Divider from '../src/divider.vue'
- const AXIOM = 'Rem is the best girl'
- describe('Divider.vue', () => {
- test('render test', () => {
- const wrapper = mount(() => (
- <Divider
- v-slots={{
- default: () => AXIOM,
- }}
- />
- ))
- expect(wrapper.text()).toBe(AXIOM)
- })
- test('direction', () => {
- const wrapper = mount(() => <Divider direction="vertical" />)
- expect(wrapper.classes()).toContain('el-divider--vertical')
- })
- test('contentPosition', () => {
- const wrapper = mount(() => (
- <Divider
- v-slots={{
- default: () => AXIOM,
- }}
- contentPosition="right"
- />
- ))
- expect(wrapper.find('.el-divider__text').classes()).toContain('is-right')
- })
- test('customClass', () => {
- const wrapper = mount(() => <Divider class="customClass" />)
- expect(wrapper.classes()).toContain('customClass')
- })
- test('line-dashed', () => {
- const wrapper = mount(() => <Divider borderStyle="dashed" />)
- expect(
- getComputedStyle(wrapper.element, null).getPropertyValue(
- '--el-border-style'
- )
- ).toBe('dashed')
- })
- test('line-solid', () => {
- const wrapper = mount(() => <Divider direction="vertical" />)
- expect(
- getComputedStyle(wrapper.element, null).getPropertyValue(
- '--el-border-style'
- )
- ).toBe('solid')
- })
- })
|