2022-09-05 19:41:32 +08:00
|
|
|
import React from 'react';
|
|
|
|
import Icon from '..';
|
|
|
|
import { render } from '../../../tests/utils';
|
|
|
|
|
|
|
|
// v3 兼容性测试
|
|
|
|
describe('Icon', () => {
|
2022-09-09 16:54:18 +08:00
|
|
|
it('should not render Icon', () => {
|
2022-09-05 19:41:32 +08:00
|
|
|
const { container } = render(<Icon />);
|
|
|
|
expect(container.firstChild).toBe(null);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should throw Error', () => {
|
|
|
|
const errSpy = jest.spyOn(console, 'error').mockImplementation(() => {});
|
|
|
|
render(<Icon />);
|
2022-09-19 09:54:55 +08:00
|
|
|
expect(errSpy).toHaveBeenCalledWith('Warning: [antd: Icon] Empty Icon');
|
|
|
|
errSpy.mockRestore();
|
2022-09-05 19:41:32 +08:00
|
|
|
});
|
|
|
|
});
|