ant-design/components/icon/__tests__/index.test.tsx

18 lines
464 B
TypeScript
Raw Normal View History

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', () => {
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();
});
});