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.
 
 

18 lines
528 B

import React from 'react';
import Icon from '..';
import { render } from '../../../tests/utils';
// v3 兼容性测试
describe('Icon', () => {
it('should not 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).toHaveBeenCalledWith('Warning: [antd: Icon] Empty Icon');
errSpy.mockRestore();
});
});