For JEST users
if you use Jest for testing and this error happen just wrap your component with
describe('Test suits for MyComponentWithLink', () => {
it('should match with snapshot', () => {
const tree = renderer
.create(
)
.toJSON();
expect(tree).toMatchSnapshot();
});
});