mastodon/app/javascript/mastodon/components/__tests__/__snapshots__/avatar-test.jsx.snap
Jasmin Johal 27cbdc6f22
Change alt text to empty string for avatars (#21875)
Co-authored-by: Renaud Chaput <renchap@gmail.com>
2023-11-07 21:46:08 +00:00

40 lines
625 B
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`<Avatar /> Autoplay renders a animated avatar 1`] = `
<div
className="account__avatar"
onMouseEnter={[Function]}
onMouseLeave={[Function]}
style={
{
"height": "100px",
"width": "100px",
}
}
>
<img
alt=""
src="/animated/alice.gif"
/>
</div>
`;
exports[`<Avatar /> Still renders a still avatar 1`] = `
<div
className="account__avatar"
onMouseEnter={[Function]}
onMouseLeave={[Function]}
style={
{
"height": "100px",
"width": "100px",
}
}
>
<img
alt=""
src="/static/alice.jpg"
/>
</div>
`;