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.
61 lines
1.4 KiB
61 lines
1.4 KiB
// Jest Snapshot v1, https://goo.gl/fbAQLP |
|
|
|
exports[`Repo/Summary/Card Long Details smoke-test 1`] = ` |
|
<div class="my-2 rounded-lg bg-base-200 p-4"> |
|
<a class="link-primary break-words" |
|
href="/repo/" |
|
> |
|
Long Name that goes on and on and on and on a... |
|
</a> |
|
<p class="text-muted break-words text-sm"> |
|
Lorem ipsum dolor sit amet, consectetur adipi... |
|
</p> |
|
</div> |
|
`; |
|
|
|
exports[`Repo/Summary/Card Long and No Spaces smoke-test 1`] = ` |
|
<div class="my-2 rounded-lg bg-base-200 p-4"> |
|
<a class="link-primary break-words" |
|
href="/repo/" |
|
> |
|
LongNameLongNameLongNameLongNameLongNameLongN... |
|
</a> |
|
<p class="text-muted break-words text-sm"> |
|
LoremipsumLoremipsumLoremipsumLoremipsumLorem... |
|
</p> |
|
</div> |
|
`; |
|
|
|
exports[`Repo/Summary/Card No Details smoke-test 1`] = ` |
|
<div class="my-2 rounded-lg bg-base-200 p-4"> |
|
<a class="link-primary break-words" |
|
href="/repo/" |
|
> |
|
Untitled |
|
</a> |
|
<p class="text-muted break-words text-sm"> |
|
</p> |
|
</div> |
|
`; |
|
|
|
exports[`Repo/Summary/Card Short Details smoke-test 1`] = ` |
|
<div class="my-2 rounded-lg bg-base-200 p-4"> |
|
<a class="link-primary break-words" |
|
href="/repo/" |
|
> |
|
Short Name |
|
</a> |
|
<p class="text-muted break-words text-sm"> |
|
short description |
|
</p> |
|
</div> |
|
`; |
|
|
|
exports[`Repo/Summary/Card loading smoke-test 1`] = ` |
|
<div class="my-2 rounded-lg bg-base-200 p-4"> |
|
<div class="skeleton mb-2 h-5 w-40"> |
|
</div> |
|
<div class="w-100 skeleton h-4"> |
|
</div> |
|
</div> |
|
`;
|
|
|