highlightFuseMatches.spec.jsx.snap 448 B

1234567891011121314151617181920212223242526272829303132333435
  1. // Jest Snapshot v1, https://goo.gl/fbAQLP
  2. exports[`highlightFuseMatches matches whole word 1`] = `
  3. Array [
  4. <mark>
  5. foo
  6. </mark>,
  7. ]
  8. `;
  9. exports[`highlightFuseMatches renders a highlighted string 1`] = `
  10. Array [
  11. <span>
  12. Auth
  13. </span>,
  14. <mark>
  15. ent
  16. </mark>,
  17. <span>
  18. icati
  19. </span>,
  20. <mark>
  21. on
  22. </mark>,
  23. <span>
  24. </span>,
  25. <mark>
  26. to
  27. </mark>,
  28. <span>
  29. kens allow you to perform actions
  30. </span>,
  31. ]
  32. `;