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.

SelectListListElement-test.tsx.snap 738B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. // Jest Snapshot v1, https://goo.gl/fbAQLP
  2. exports[`should display a loader when checking 1`] = `
  3. <li
  4. className=""
  5. >
  6. <Checkbox
  7. checked={false}
  8. className="select-list-list-checkbox display-flex-center"
  9. loading={false}
  10. onCheck={[Function]}
  11. thirdState={false}
  12. >
  13. <span
  14. className="little-spacer-left flex-1"
  15. >
  16. foo
  17. </span>
  18. </Checkbox>
  19. </li>
  20. `;
  21. exports[`should display a loader when checking 2`] = `
  22. <li
  23. className=""
  24. >
  25. <Checkbox
  26. checked={false}
  27. className="select-list-list-checkbox display-flex-center"
  28. loading={true}
  29. onCheck={[Function]}
  30. thirdState={false}
  31. >
  32. <span
  33. className="little-spacer-left flex-1"
  34. >
  35. foo
  36. </span>
  37. </Checkbox>
  38. </li>
  39. `;