mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-04 21:18:01 +08:00
c34caad24c
* test: js => ts * test: add test * fix: fix eslint error * test: add test case * fix: fix test error * fix: fix eslint error * fix: fix eslint error * fix: eslint error fix * fix: fallback eslint config & add test case * test: add all test case * fix: bugfix * fix: bugFix * fix: bugFix * fix: bugFix * fix: lint * fix: add React.createRef * fix: add breadcrumbName in Routes * fix: any commit for restart ci/cd * fix: remove type * fix: test fix * fix: test fix * fix: add ts-ignore for id * test: add Icon test case * test: remove ts-ignore * test: add Icon test case
73 lines
1.1 KiB
Plaintext
73 lines
1.1 KiB
Plaintext
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`react router react router 3 1`] = `
|
|
<nav
|
|
class="ant-breadcrumb"
|
|
>
|
|
<ol>
|
|
<li>
|
|
<span
|
|
class="ant-breadcrumb-link"
|
|
>
|
|
<a
|
|
href="#/"
|
|
>
|
|
Home
|
|
</a>
|
|
</span>
|
|
<span
|
|
class="ant-breadcrumb-separator"
|
|
>
|
|
/
|
|
</span>
|
|
</li>
|
|
<li>
|
|
<span
|
|
class="ant-breadcrumb-link"
|
|
>
|
|
<a
|
|
href="#/apps"
|
|
>
|
|
Application List
|
|
</a>
|
|
</span>
|
|
<span
|
|
class="ant-breadcrumb-separator"
|
|
>
|
|
/
|
|
</span>
|
|
</li>
|
|
<li>
|
|
<span
|
|
class="ant-breadcrumb-link"
|
|
>
|
|
<a
|
|
href="#/apps/1"
|
|
>
|
|
Application1
|
|
</a>
|
|
</span>
|
|
<span
|
|
class="ant-breadcrumb-separator"
|
|
>
|
|
/
|
|
</span>
|
|
</li>
|
|
<li>
|
|
<span
|
|
class="ant-breadcrumb-link"
|
|
>
|
|
<span>
|
|
Detail
|
|
</span>
|
|
</span>
|
|
<span
|
|
class="ant-breadcrumb-separator"
|
|
>
|
|
/
|
|
</span>
|
|
</li>
|
|
</ol>
|
|
</nav>
|
|
`;
|