multipleCheckbox.spec.js.snap 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. // Jest Snapshot v1, https://goo.gl/fbAQLP
  2. exports[`MultipleCheckbox renders 1`] = `
  3. <MultipleCheckboxWrapper>
  4. <Box
  5. key="0"
  6. w={
  7. Array [
  8. 1,
  9. 0.5,
  10. 0.3333333333333333,
  11. 0.25,
  12. ]
  13. }
  14. >
  15. <Label>
  16. <input
  17. checked={false}
  18. onChange={[Function]}
  19. type="checkbox"
  20. value={0}
  21. />
  22. <CheckboxLabel>
  23. Choice A
  24. </CheckboxLabel>
  25. </Label>
  26. </Box>
  27. <Box
  28. key="1"
  29. w={
  30. Array [
  31. 1,
  32. 0.5,
  33. 0.3333333333333333,
  34. 0.25,
  35. ]
  36. }
  37. >
  38. <Label>
  39. <input
  40. checked={true}
  41. onChange={[Function]}
  42. type="checkbox"
  43. value={1}
  44. />
  45. <CheckboxLabel>
  46. Choice B
  47. </CheckboxLabel>
  48. </Label>
  49. </Box>
  50. <Box
  51. key="2"
  52. w={
  53. Array [
  54. 1,
  55. 0.5,
  56. 0.3333333333333333,
  57. 0.25,
  58. ]
  59. }
  60. >
  61. <Label>
  62. <input
  63. checked={false}
  64. onChange={[Function]}
  65. type="checkbox"
  66. value={2}
  67. />
  68. <CheckboxLabel>
  69. Choice C
  70. </CheckboxLabel>
  71. </Label>
  72. </Box>
  73. </MultipleCheckboxWrapper>
  74. `;