You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
537 B
22 lines
537 B
import { mount } from '@vue/test-utils'
|
|
import Badge from '../index'
|
|
|
|
describe('Badge', () => {
|
|
test('badge dot not scaling count > 9', () => {
|
|
const badge = mount({
|
|
render () {
|
|
return <Badge count={10} dot />
|
|
},
|
|
})
|
|
expect(badge.findAll('.ant-card-multiple-words').length).toBe(0)
|
|
})
|
|
test('badge dot not showing count == 0', () => {
|
|
const badge = mount({
|
|
render () {
|
|
return <Badge count={0} dot />
|
|
},
|
|
})
|
|
expect(badge.findAll('.ant-badge-dot').length).toBe(0)
|
|
})
|
|
})
|