(html: string)
| 16 | } |
| 17 | |
| 18 | function htmlToText(html: string) { |
| 19 | const div = document.createElement('div'); |
| 20 | div.innerHTML = html; |
| 21 | // eslint-disable-next-line @typescript-eslint/no-unnecessary-condition |
| 22 | return div.textContent ?? ''; |
| 23 | } |
| 24 | |
| 25 | describe('utility code', () => { |
| 26 | test('simplifyCodes', () => { |
no outgoing calls
no test coverage detected