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.

Radio-test.tsx.snap 531B

1234567891011121314151617181920212223242526272829
  1. // Jest Snapshot v1, https://goo.gl/fbAQLP
  2. exports[`should render properly: checked 1`] = `
  3. <a
  4. aria-checked={true}
  5. className="display-inline-flex-center link-radio"
  6. href="#"
  7. onClick={[Function]}
  8. role="radio"
  9. >
  10. <i
  11. className="icon-radio spacer-right is-checked"
  12. />
  13. </a>
  14. `;
  15. exports[`should render properly: not checked 1`] = `
  16. <a
  17. aria-checked={false}
  18. className="display-inline-flex-center link-radio"
  19. href="#"
  20. onClick={[Function]}
  21. role="radio"
  22. >
  23. <i
  24. className="icon-radio spacer-right"
  25. />
  26. </a>
  27. `;