mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-16 01:41:02 +08:00
13 lines
322 B
JavaScript
13 lines
322 B
JavaScript
import React from 'react';
|
|
import { render } from 'enzyme';
|
|
import Icon from '..';
|
|
|
|
describe('Icon', () => {
|
|
it('should render to a <i class="xxx"><svg>...</svg></i>', () => {
|
|
const wrapper = render(
|
|
<Icon type="message" className="my-icon-classname" />
|
|
);
|
|
expect(wrapper).toMatchSnapshot();
|
|
});
|
|
});
|