(arr: number[])
| 78 | let root: TestElement |
| 79 | let elm: TestElement |
| 80 | const renderChildren = (arr: number[]) => { |
| 81 | render(h('div', arr.map(toSpan)), root) |
| 82 | return root.children[0] as TestElement |
| 83 | } |
| 84 | |
| 85 | beforeEach(() => { |
| 86 | root = nodeOps.createElement('div') |
no test coverage detected