File size: 529 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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();
  });
});