ant-design-vue/components/breadcrumb/__tests__/Breadcrumb.test.js

65 lines
1.6 KiB
JavaScript
Raw Normal View History

2019-01-12 03:33:27 +00:00
import { mount } from '@vue/test-utils';
import Breadcrumb from '../index';
2018-05-19 09:37:24 +00:00
describe('Breadcrumb', () => {
2019-01-12 03:33:27 +00:00
const errorSpy = jest.spyOn(console, 'error').mockImplementation(() => {});
2018-05-19 09:37:24 +00:00
afterEach(() => {
2019-01-12 03:33:27 +00:00
errorSpy.mockReset();
});
2018-05-19 09:37:24 +00:00
afterAll(() => {
2019-01-12 03:33:27 +00:00
errorSpy.mockRestore();
});
2018-05-19 09:37:24 +00:00
// // https://github.com/airbnb/enzyme/issues/875
it('warns on non-Breadcrumb.Item children', () => {
2019-01-12 03:33:27 +00:00
mount({
render() {
return (
<Breadcrumb>
<div>foo</div>
</Breadcrumb>
);
},
});
expect(errorSpy.mock.calls).toHaveLength(1);
2018-05-19 09:37:24 +00:00
expect(errorSpy.mock.calls[0][0]).toMatch(
2019-01-12 03:33:27 +00:00
"Breadcrumb only accepts Breadcrumb.Item as it's children",
);
});
2018-05-19 09:37:24 +00:00
// https:// github.com/ant-design/ant-design/issues/5015
it('should allow Breadcrumb.Item is null or undefined', () => {
2019-01-12 03:33:27 +00:00
const wrapper = mount({
render() {
return (
<Breadcrumb>
{null}
<Breadcrumb.Item>Home</Breadcrumb.Item>
{undefined}
</Breadcrumb>
);
},
});
expect(errorSpy).not.toHaveBeenCalled();
expect(wrapper.html()).toMatchSnapshot();
});
2018-05-19 09:37:24 +00:00
// https://github.com/ant-design/ant-design/issues/5542
it('should not display Breadcrumb Item when its children is falsy', () => {
2019-01-12 03:33:27 +00:00
const wrapper = mount({
render() {
return (
<Breadcrumb>
<Breadcrumb.Item />
<Breadcrumb.Item>xxx</Breadcrumb.Item>
<Breadcrumb.Item>yyy</Breadcrumb.Item>
</Breadcrumb>
);
},
});
expect(wrapper.html()).toMatchSnapshot();
});
});