mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-01 03:29:39 +08:00
d20572bdab
* Run snapshot testing against all demos * Split demo tests * ignore coverage folder * Upgrade antd-demo-jest * enable cache * intergate with coveralls.io * Add node test * Set worker to 2 https://github.com/facebook/jest/issues/1742 * config coverage * Set default supportServerRender to true
25 lines
752 B
JavaScript
25 lines
752 B
JavaScript
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');
|
|
});
|
|
});
|