mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-03 16:39:41 +08:00
18 lines
460 B
TypeScript
18 lines
460 B
TypeScript
|
import React from 'react';
|
||
|
import Icon from '..';
|
||
|
import { render } from '../../../tests/utils';
|
||
|
|
||
|
// v3 兼容性测试
|
||
|
describe('Icon', () => {
|
||
|
it('should render Icon', () => {
|
||
|
const { container } = render(<Icon />);
|
||
|
expect(container.firstChild).toBe(null);
|
||
|
});
|
||
|
|
||
|
it('should throw Error', () => {
|
||
|
const errSpy = jest.spyOn(console, 'error').mockImplementation(() => {});
|
||
|
render(<Icon />);
|
||
|
expect(errSpy).toHaveBeenCalled();
|
||
|
});
|
||
|
});
|