(html: string)
| 19 | } from './vim-nav' |
| 20 | |
| 21 | function el(html: string): HTMLElement { |
| 22 | const container = document.createElement('div') |
| 23 | container.innerHTML = html.trim() |
| 24 | return container.firstElementChild as HTMLElement |
| 25 | } |
| 26 | |
| 27 | describe('hintTargetOpensNote (#100 — hint into a note lands in the editor)', () => { |
| 28 | it('is true for a sidebar note row', () => { |
no outgoing calls
no test coverage detected