mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
32 lines
521 B
Plaintext
32 lines
521 B
Plaintext
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`UserTeaserHelper with linkToProfile and popover enabled, on touch screen renders button 1`] = `
|
|
<div>
|
|
<button>
|
|
<div>
|
|
Test Content
|
|
</div>
|
|
</button>
|
|
</div>
|
|
`;
|
|
|
|
exports[`UserTeaserHelper with linkToProfile, on desktop renders link 1`] = `
|
|
<div>
|
|
<a>
|
|
<div>
|
|
Test Content
|
|
</div>
|
|
</a>
|
|
</div>
|
|
`;
|
|
|
|
exports[`UserTeaserHelper without linkToProfile renders span 1`] = `
|
|
<div>
|
|
<span>
|
|
<div>
|
|
Test Content
|
|
</div>
|
|
</span>
|
|
</div>
|
|
`;
|