ant-design/components/table/__tests__/__snapshots__/Table.pagination.test.js.snap

121 lines
2.8 KiB
Plaintext
Raw Normal View History

// Jest Snapshot v1, https://goo.gl/fbAQLP
2016-12-07 20:59:20 +08:00
exports[`Table.pagination renders pagination correctly 1`] = `
<div
class="ant-table-wrapper"
>
2016-12-07 20:59:20 +08:00
<div
class="ant-spin-nested-loading"
>
2016-12-07 20:59:20 +08:00
<div
class="ant-spin-container"
>
2016-12-07 20:59:20 +08:00
<div
2018-06-27 18:57:04 +08:00
class="ant-table ant-table-default ant-table-scroll-position-left"
>
<div
class="ant-table-content"
>
2016-12-07 20:59:20 +08:00
<div
class="ant-table-body"
>
<table
class=""
>
<colgroup>
2017-10-10 16:06:49 +08:00
<col />
</colgroup>
<thead
class="ant-table-thead"
>
<tr>
<th
class=""
>
<span>
Name
</span>
</th>
</tr>
</thead>
<tbody
class="ant-table-tbody"
>
<tr
class="ant-table-row ant-table-row-level-0"
>
<td
class=""
>
<span
class="ant-table-row-indent indent-level-0"
2017-09-20 16:26:18 +08:00
style="padding-left:0px"
2017-10-10 16:06:49 +08:00
/>
Jack
</td>
</tr>
<tr
class="ant-table-row ant-table-row-level-0"
>
<td
class=""
>
<span
class="ant-table-row-indent indent-level-0"
2017-09-20 16:26:18 +08:00
style="padding-left:0px"
2017-10-10 16:06:49 +08:00
/>
Lucy
</td>
</tr>
</tbody>
</table>
2016-12-07 20:59:20 +08:00
</div>
</div>
2016-12-07 20:59:20 +08:00
</div>
<ul
class="ant-pagination my-page ant-table-pagination"
unselectable="unselectable"
>
<li
2017-05-17 11:11:01 +08:00
aria-disabled="true"
class="ant-pagination-disabled ant-pagination-prev"
title="Previous Page"
>
2017-08-30 14:24:47 +08:00
<a
class="ant-pagination-item-link"
2017-10-10 16:06:49 +08:00
/>
</li>
<li
class="ant-pagination-item ant-pagination-item-1 ant-pagination-item-active"
2017-06-01 10:44:00 +08:00
tabindex="0"
title="1"
>
<a>
1
</a>
</li>
<li
class="ant-pagination-item ant-pagination-item-2"
2017-06-01 10:44:00 +08:00
tabindex="0"
title="2"
>
<a>
2
</a>
</li>
<li
2017-05-17 11:11:01 +08:00
aria-disabled="false"
class=" ant-pagination-next"
2017-06-01 10:44:00 +08:00
tabindex="0"
title="Next Page"
>
2017-08-30 14:24:47 +08:00
<a
class="ant-pagination-item-link"
2017-10-10 16:06:49 +08:00
/>
</li>
</ul>
2016-12-07 20:59:20 +08:00
</div>
</div>
</div>
`;