(treeNode: GroupNode | TestNode)
| 127 | } |
| 128 | |
| 129 | function getTestSelectionForNode(treeNode: GroupNode | TestNode): TestSelection { |
| 130 | return { name: treeNode.name!, isGroup: treeNode instanceof GroupNode, position: treeNode.range?.start }; |
| 131 | } |
| 132 | |
| 133 | export function getTestSelectionForOutline(test: TestOutlineInfo): TestSelection { |
| 134 | const position = test.range.start; |
no outgoing calls
no test coverage detected