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.

33 lines
705 B

  1. // Jest Snapshot v1, https://goo.gl/fbAQLP
  2. exports[`<Avatar /> Autoplay renders a animated avatar 1`] = `
  3. <div
  4. className="account__avatar"
  5. onMouseEnter={[Function]}
  6. onMouseLeave={[Function]}
  7. style={
  8. Object {
  9. "backgroundImage": "url(/animated/alice.gif)",
  10. "backgroundSize": "100px 100px",
  11. "height": "100px",
  12. "width": "100px",
  13. }
  14. }
  15. />
  16. `;
  17. exports[`<Avatar /> Still renders a still avatar 1`] = `
  18. <div
  19. className="account__avatar"
  20. onMouseEnter={[Function]}
  21. onMouseLeave={[Function]}
  22. style={
  23. Object {
  24. "backgroundImage": "url(/static/alice.jpg)",
  25. "backgroundSize": "100px 100px",
  26. "height": "100px",
  27. "width": "100px",
  28. }
  29. }
  30. />
  31. `;