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.

SimpleModal-test.tsx.snap 694B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. // Jest Snapshot v1, https://goo.gl/fbAQLP
  2. exports[`renders 1`] = `
  3. <Modal
  4. contentLabel=""
  5. onRequestClose={[MockFunction]}
  6. >
  7. <div />
  8. </Modal>
  9. `;
  10. exports[`submits 1`] = `
  11. <Modal
  12. contentLabel=""
  13. onRequestClose={[MockFunction]}
  14. >
  15. <Button
  16. disabled={false}
  17. onClick={[Function]}
  18. >
  19. close
  20. </Button>
  21. </Modal>
  22. `;
  23. exports[`submits 2`] = `
  24. <Modal
  25. contentLabel=""
  26. onRequestClose={[MockFunction]}
  27. >
  28. <Button
  29. disabled={true}
  30. onClick={[Function]}
  31. >
  32. close
  33. </Button>
  34. </Modal>
  35. `;
  36. exports[`submits 3`] = `
  37. <Modal
  38. contentLabel=""
  39. onRequestClose={[MockFunction]}
  40. >
  41. <Button
  42. disabled={false}
  43. onClick={[Function]}
  44. >
  45. close
  46. </Button>
  47. </Modal>
  48. `;