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.
127 lines
3.1 KiB
127 lines
3.1 KiB
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`Table renders JSX correctly 1`] = `
|
|
<div
|
|
class="ant-table-wrapper"
|
|
>
|
|
<div
|
|
class="ant-spin-nested-loading"
|
|
>
|
|
<div
|
|
class="ant-spin-container"
|
|
>
|
|
<div
|
|
class="ant-table ant-table-default ant-table-scroll-position-left"
|
|
>
|
|
<div
|
|
class="ant-table-content"
|
|
>
|
|
<div
|
|
class="ant-table-body"
|
|
>
|
|
<table
|
|
class=""
|
|
>
|
|
<colgroup>
|
|
<col />
|
|
<col />
|
|
<col />
|
|
</colgroup>
|
|
<thead
|
|
class="ant-table-thead"
|
|
>
|
|
<tr>
|
|
<th
|
|
class=""
|
|
colspan="2"
|
|
>
|
|
<div>
|
|
Name
|
|
</div>
|
|
</th>
|
|
<th
|
|
class=""
|
|
rowspan="2"
|
|
>
|
|
<div>
|
|
Age
|
|
</div>
|
|
</th>
|
|
</tr>
|
|
<tr>
|
|
<th
|
|
class=""
|
|
>
|
|
<div>
|
|
First Name
|
|
</div>
|
|
</th>
|
|
<th
|
|
class=""
|
|
>
|
|
<div>
|
|
Last Name
|
|
</div>
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody
|
|
class="ant-table-tbody"
|
|
>
|
|
<tr
|
|
class="ant-table-row ant-table-row-level-0"
|
|
data-row-key="1"
|
|
>
|
|
<td
|
|
class=""
|
|
>
|
|
<span
|
|
class="ant-table-row-indent indent-level-0"
|
|
style="padding-left:0px"
|
|
/>
|
|
John
|
|
</td>
|
|
<td
|
|
class=""
|
|
>
|
|
Brown
|
|
</td>
|
|
<td
|
|
class=""
|
|
>
|
|
32
|
|
</td>
|
|
</tr>
|
|
<tr
|
|
class="ant-table-row ant-table-row-level-0"
|
|
data-row-key="2"
|
|
>
|
|
<td
|
|
class=""
|
|
>
|
|
<span
|
|
class="ant-table-row-indent indent-level-0"
|
|
style="padding-left:0px"
|
|
/>
|
|
Jim
|
|
</td>
|
|
<td
|
|
class=""
|
|
>
|
|
Green
|
|
</td>
|
|
<td
|
|
class=""
|
|
>
|
|
42
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
`;
|
|
|