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.
27 lines
792 B
27 lines
792 B
jest.unmock('../components/icon/index');
|
|
|
|
import React from 'react';
|
|
import TestUtils from 'react-addons-test-utils';
|
|
import { wrap } from 'react-stateless-wrapper';
|
|
|
|
import AntIcon from '../components/icon/index';
|
|
const Icon = wrap(AntIcon);
|
|
|
|
describe('Icon', function() {
|
|
let icon;
|
|
let iconNode;
|
|
|
|
beforeEach(() => {
|
|
icon = TestUtils.renderIntoDocument(
|
|
<Icon type="appstore" className="my-icon-classname" />
|
|
);
|
|
iconNode = TestUtils.findRenderedDOMComponentWithTag(icon, 'I');
|
|
});
|
|
|
|
it('should render to a <i class="xxx"></i>', () => {
|
|
expect(iconNode.tagName).toBe('I');
|
|
expect(iconNode.className).toContain('my-icon-classname');
|
|
expect(iconNode.className).toContain('anticon');
|
|
expect(iconNode.className).toContain('anticon-appstore');
|
|
});
|
|
});
|
|
|