You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
796 B
51 lines
796 B
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`Breadcrumb should allow Breadcrumb.Item is null or undefined 1`] = `
|
|
<div
|
|
class="ant-breadcrumb"
|
|
>
|
|
<span>
|
|
<span
|
|
class="ant-breadcrumb-link"
|
|
>
|
|
Home
|
|
</span>
|
|
<span
|
|
class="ant-breadcrumb-separator"
|
|
>
|
|
/
|
|
</span>
|
|
</span>
|
|
</div>
|
|
`;
|
|
|
|
exports[`Breadcrumb should not display Breadcrumb Item when its children is falsy 1`] = `
|
|
<div
|
|
class="ant-breadcrumb"
|
|
>
|
|
<span>
|
|
<span
|
|
class="ant-breadcrumb-link"
|
|
>
|
|
xxx
|
|
</span>
|
|
<span
|
|
class="ant-breadcrumb-separator"
|
|
>
|
|
/
|
|
</span>
|
|
</span>
|
|
<span>
|
|
<span
|
|
class="ant-breadcrumb-link"
|
|
>
|
|
yyy
|
|
</span>
|
|
<span
|
|
class="ant-breadcrumb-separator"
|
|
>
|
|
/
|
|
</span>
|
|
</span>
|
|
</div>
|
|
`;
|
|
|