mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2026-03-01 12:44:37 +00:00
178 lines
3.4 KiB
Plaintext
178 lines
3.4 KiB
Plaintext
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`Badges.vue with badges in presentation mode renders 1`] = `
|
|
<div>
|
|
<div
|
|
class="hc-badges"
|
|
scale="1.2"
|
|
>
|
|
<div
|
|
class="hc-badge-container"
|
|
draggable="false"
|
|
>
|
|
<img
|
|
class="hc-badge"
|
|
src="/api/path/to/some/icon"
|
|
title="Some description"
|
|
/>
|
|
</div>
|
|
<div
|
|
class="hc-badge-container"
|
|
draggable="false"
|
|
>
|
|
<img
|
|
class="hc-badge"
|
|
src="/api/path/to/another/icon"
|
|
title="Another description"
|
|
/>
|
|
</div>
|
|
<div
|
|
class="hc-badge-container"
|
|
draggable="false"
|
|
>
|
|
<img
|
|
class="hc-badge"
|
|
src="/api/path/to/third/icon"
|
|
title="Third description"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
`;
|
|
|
|
exports[`Badges.vue with badges in selection mode clicking on second badge selects badge 1`] = `
|
|
<div>
|
|
<div
|
|
class="hc-badges"
|
|
scale="1.2"
|
|
>
|
|
<div
|
|
class="hc-badge-container"
|
|
draggable="false"
|
|
>
|
|
<img
|
|
class="hc-badge"
|
|
src="/api/path/to/some/icon"
|
|
title="Some description"
|
|
/>
|
|
</div>
|
|
<button
|
|
class="hc-badge-container selectable selected"
|
|
draggable="false"
|
|
>
|
|
<img
|
|
class="hc-badge"
|
|
src="/api/path/to/another/icon"
|
|
title="Another description"
|
|
/>
|
|
</button>
|
|
<button
|
|
class="hc-badge-container selectable"
|
|
draggable="false"
|
|
>
|
|
<img
|
|
class="hc-badge"
|
|
src="/api/path/to/third/icon"
|
|
title="Third description"
|
|
/>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
`;
|
|
|
|
exports[`Badges.vue with badges in selection mode clicking twice on second badge deselects badge 1`] = `
|
|
<div>
|
|
<div
|
|
class="hc-badges"
|
|
scale="1.2"
|
|
>
|
|
<div
|
|
class="hc-badge-container"
|
|
draggable="false"
|
|
>
|
|
<img
|
|
class="hc-badge"
|
|
src="/api/path/to/some/icon"
|
|
title="Some description"
|
|
/>
|
|
</div>
|
|
<button
|
|
class="hc-badge-container selectable"
|
|
draggable="false"
|
|
>
|
|
<img
|
|
class="hc-badge"
|
|
src="/api/path/to/another/icon"
|
|
title="Another description"
|
|
/>
|
|
</button>
|
|
<button
|
|
class="hc-badge-container selectable"
|
|
draggable="false"
|
|
>
|
|
<img
|
|
class="hc-badge"
|
|
src="/api/path/to/third/icon"
|
|
title="Third description"
|
|
/>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
`;
|
|
|
|
exports[`Badges.vue with badges in selection mode renders 1`] = `
|
|
<div>
|
|
<div
|
|
class="hc-badges"
|
|
scale="1.2"
|
|
>
|
|
<div
|
|
class="hc-badge-container"
|
|
draggable="false"
|
|
>
|
|
<img
|
|
class="hc-badge"
|
|
src="/api/path/to/some/icon"
|
|
title="Some description"
|
|
/>
|
|
</div>
|
|
<button
|
|
class="hc-badge-container selectable"
|
|
draggable="false"
|
|
>
|
|
<img
|
|
class="hc-badge"
|
|
src="/api/path/to/another/icon"
|
|
title="Another description"
|
|
/>
|
|
</button>
|
|
<button
|
|
class="hc-badge-container selectable"
|
|
draggable="false"
|
|
>
|
|
<img
|
|
class="hc-badge"
|
|
src="/api/path/to/third/icon"
|
|
title="Third description"
|
|
/>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
`;
|
|
|
|
exports[`Badges.vue without badges renders in presentation mode 1`] = `
|
|
<div>
|
|
<div
|
|
class="hc-badges"
|
|
/>
|
|
</div>
|
|
`;
|
|
|
|
exports[`Badges.vue without badges renders in selection mode 1`] = `
|
|
<div>
|
|
<div
|
|
class="hc-badges"
|
|
/>
|
|
</div>
|
|
`;
|