|
|
@ -1,6 +1,7 @@ |
|
|
|
import React from 'react'; |
|
|
|
import { mount } from 'enzyme'; |
|
|
|
import Breadcrumb from '../Breadcrumb'; |
|
|
|
import { mount, render } from 'enzyme'; |
|
|
|
import { renderToJson } from 'enzyme-to-json'; |
|
|
|
import Breadcrumb from '../index'; |
|
|
|
|
|
|
|
describe('Breadcrumb', () => { |
|
|
|
it('warns on non-Breadcrumb.Item children', () => { |
|
|
@ -18,4 +19,18 @@ describe('Breadcrumb', () => { |
|
|
|
'Breadcrumb only accetps Breadcrumb.Item as it\'s children' |
|
|
|
); |
|
|
|
}); |
|
|
|
|
|
|
|
// https://github.com/ant-design/ant-design/issues/5015
|
|
|
|
it('should allow Breadcrumb.Item is null or undefined', () => { |
|
|
|
const wrapper = render( |
|
|
|
<Breadcrumb> |
|
|
|
{null} |
|
|
|
<Breadcrumb.Item>Home</Breadcrumb.Item> |
|
|
|
{undefined} |
|
|
|
</Breadcrumb> |
|
|
|
); |
|
|
|
// eslint-disable-next-line
|
|
|
|
expect(console.error.calls).toBe(undefined); |
|
|
|
expect(renderToJson(wrapper)).toMatchSnapshot(); |
|
|
|
}); |
|
|
|
}); |
|
|
|