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.

ReloadButton-test.tsx.snap 1.2KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. // Jest Snapshot v1, https://goo.gl/fbAQLP
  2. exports[`should handle click 1`] = `
  3. <Tooltip
  4. overlay="reload"
  5. >
  6. <a
  7. className="link-no-underline"
  8. href="#"
  9. onClick={[Function]}
  10. >
  11. <svg
  12. height="24"
  13. viewBox="0 0 18 24"
  14. width="18"
  15. >
  16. <path
  17. d="M16.6454 8.1084c-.3-.5-.9-.7-1.4-.4-.5.3-.7.9-.4 1.4.9 1.6 1.1 3.4.6 5.1-.5 1.7-1.7 3.2-3.2 4-3.3 1.8-7.4.6-9.1-2.7-1.8-3.1-.8-6.9 2.1-8.8v3.3h2v-7h-7v2h3.9c-3.7 2.5-5 7.5-2.8 11.4 1.6 3 4.6 4.6 7.7 4.6 1.4 0 2.8-.3 4.2-1.1 2-1.1 3.5-3 4.2-5.2.6-2.2.3-4.6-.8-6.6z"
  18. fill="#656565"
  19. />
  20. </svg>
  21. </a>
  22. </Tooltip>
  23. `;
  24. exports[`should render properly 1`] = `
  25. <Tooltip
  26. overlay="reload"
  27. >
  28. <a
  29. className="link-no-underline"
  30. href="#"
  31. onClick={[Function]}
  32. >
  33. <svg
  34. height="24"
  35. viewBox="0 0 18 24"
  36. width="18"
  37. >
  38. <path
  39. d="M16.6454 8.1084c-.3-.5-.9-.7-1.4-.4-.5.3-.7.9-.4 1.4.9 1.6 1.1 3.4.6 5.1-.5 1.7-1.7 3.2-3.2 4-3.3 1.8-7.4.6-9.1-2.7-1.8-3.1-.8-6.9 2.1-8.8v3.3h2v-7h-7v2h3.9c-3.7 2.5-5 7.5-2.8 11.4 1.6 3 4.6 4.6 7.7 4.6 1.4 0 2.8-.3 4.2-1.1 2-1.1 3.5-3 4.2-5.2.6-2.2.3-4.6-.8-6.6z"
  40. fill="#656565"
  41. />
  42. </svg>
  43. </a>
  44. </Tooltip>
  45. `;