PositionedStreetView.test.js.snap 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. // Jest Snapshot v1, https://goo.gl/fbAQLP
  2. exports[`PositionedStreetView does not reset on other keys on button 1`] = `
  3. <Fragment>
  4. <div
  5. className="fullsize"
  6. />
  7. <div
  8. className="resetButton"
  9. onClick={[Function]}
  10. onKeyDown={[Function]}
  11. role="button"
  12. tabIndex="0"
  13. >
  14. Reset
  15. </div>
  16. </Fragment>
  17. `;
  18. exports[`PositionedStreetView renders 1`] = `
  19. <Fragment>
  20. <div
  21. className="fullsize"
  22. />
  23. <div
  24. className="resetButton"
  25. onClick={[Function]}
  26. onKeyDown={[Function]}
  27. role="button"
  28. tabIndex="0"
  29. >
  30. Reset
  31. </div>
  32. </Fragment>
  33. `;
  34. exports[`PositionedStreetView resets 1`] = `
  35. <Fragment>
  36. <div
  37. className="fullsize"
  38. />
  39. <div
  40. className="resetButton"
  41. onClick={[Function]}
  42. onKeyDown={[Function]}
  43. role="button"
  44. tabIndex="0"
  45. >
  46. Reset
  47. </div>
  48. </Fragment>
  49. `;
  50. exports[`PositionedStreetView resets on enter on button 1`] = `
  51. <Fragment>
  52. <div
  53. className="fullsize"
  54. />
  55. <div
  56. className="resetButton"
  57. onClick={[Function]}
  58. onKeyDown={[Function]}
  59. role="button"
  60. tabIndex="0"
  61. >
  62. Reset
  63. </div>
  64. </Fragment>
  65. `;