1234567891011121314151617181920212223242526272829303132333435 |
- // Jest Snapshot v1, https://goo.gl/fbAQLP
- exports[`highlightFuseMatches matches whole word 1`] = `
- Array [
- <mark>
- foo
- </mark>,
- ]
- `;
- exports[`highlightFuseMatches renders a highlighted string 1`] = `
- Array [
- <span>
- Auth
- </span>,
- <mark>
- ent
- </mark>,
- <span>
- icati
- </span>,
- <mark>
- on
- </mark>,
- <span>
-
- </span>,
- <mark>
- to
- </mark>,
- <span>
- kens allow you to perform actions
- </span>,
- ]
- `;
|