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.

Tooltip-test.tsx.snap 920B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. // Jest Snapshot v1, https://goo.gl/fbAQLP
  2. exports[`should not render empty tooltips 1`] = `
  3. <div
  4. id="tooltip"
  5. />
  6. `;
  7. exports[`should not render empty tooltips 2`] = `
  8. <div
  9. id="tooltip"
  10. />
  11. `;
  12. exports[`should render 1`] = `
  13. <Fragment>
  14. <div
  15. id="tooltip"
  16. onBlur={[Function]}
  17. onFocus={[Function]}
  18. onPointerEnter={[Function]}
  19. onPointerLeave={[Function]}
  20. tabIndex={0}
  21. />
  22. </Fragment>
  23. `;
  24. exports[`should render 2`] = `
  25. <Fragment>
  26. <div
  27. aria-describedby="tooltip-1"
  28. aria-labelledby="tooltip-1"
  29. id="tooltip"
  30. onBlur={[Function]}
  31. onFocus={[Function]}
  32. onPointerEnter={[Function]}
  33. onPointerLeave={[Function]}
  34. tabIndex={0}
  35. />
  36. <EscKeydownHandler
  37. onKeydown={[Function]}
  38. >
  39. <TooltipPortal>
  40. <ScreenPositionFixer
  41. ready={false}
  42. >
  43. <Component />
  44. </ScreenPositionFixer>
  45. </TooltipPortal>
  46. </EscKeydownHandler>
  47. </Fragment>
  48. `;