element-plus/packages/components/badge/__tests__/badge.spec.ts
Aex 6408d3cce6
feat(components): [el-badge] support color of type when is-dot (#3279)
* feat(components): [el-badge] apply color of type when isDot

* fix(components): [el-badge] change default type to danger
2021-09-07 17:17:39 +08:00

52 lines
1.3 KiB
TypeScript

import { mount } from '@vue/test-utils'
import Badge from '../src/index.vue'
const AXIOM = 'Rem is the best girl'
describe('Badge', () => {
test('has value', () => {
const wrapper = mount(Badge, {
props: { value: 80 },
})
expect(wrapper.vm.content).toEqual(80)
})
test('is fixed', () => {
const wrapper = mount(Badge, {
slots: { default: AXIOM },
})
expect(wrapper.find('.el-badge__content.is-fixed').exists()).toBe(true)
})
test('is dot', () => {
const wrapper = mount(Badge, {
props: { isDot: true },
slots: { default: AXIOM },
})
expect(wrapper.find('.el-badge__content.is-dot').exists()).toBe(true)
expect(
wrapper.find('.el-badge__content.el-badge__content--danger').exists()
).toBe(true)
})
test('is dot with type', () => {
const wrapper = mount(Badge, {
props: { isDot: true, type: 'success' },
slots: { default: AXIOM },
})
expect(wrapper.find('.el-badge__content.is-dot').exists()).toBe(true)
expect(
wrapper.find('.el-badge__content.el-badge__content--success').exists()
).toBe(true)
})
test('max', async () => {
const wrapper = mount(Badge, {
props: { max: 100, value: 200 },
})
expect(wrapper.vm.content).toEqual('100+')
await wrapper.setProps({ value: 80 })
expect(wrapper.vm.content).toEqual(80)
})
})