2018-02-24 11:40:44 +08:00
|
|
|
import React from 'react';
|
|
|
|
import { mount } from 'enzyme';
|
|
|
|
import Badge from '../index';
|
|
|
|
|
|
|
|
describe('Badge', () => {
|
|
|
|
test('badge dot not scaling count > 9', () => {
|
|
|
|
const badge = mount(<Badge count={10} dot />);
|
|
|
|
expect(badge.find('.ant-card-multiple-words').length).toBe(0);
|
|
|
|
});
|
2018-04-10 01:09:18 +08:00
|
|
|
|
2018-02-24 11:40:44 +08:00
|
|
|
test('badge dot not showing count == 0', () => {
|
|
|
|
const badge = mount(<Badge count={0} dot />);
|
|
|
|
expect(badge.find('.ant-badge-dot').length).toBe(0);
|
|
|
|
});
|
2018-04-10 01:09:18 +08:00
|
|
|
|
|
|
|
it('should have an overriden title attribute', () => {
|
|
|
|
const badge = mount(<Badge count={10} title="Custom title" />);
|
|
|
|
expect(badge.find('.ant-scroll-number').getDOMNode().attributes.getNamedItem('title').value).toEqual('Custom title');
|
|
|
|
});
|
2018-02-24 11:40:44 +08:00
|
|
|
});
|