(node: TestNode)
| 216 | } |
| 217 | |
| 218 | function parentNode(node: TestNode): TestElement | null { |
| 219 | return node.parentNode |
| 220 | } |
| 221 | |
| 222 | function nextSibling(node: TestNode): TestNode | null { |
| 223 | const parent = node.parentNode |
no outgoing calls
no test coverage detected