(packageDir: string)
| 86 | } |
| 87 | |
| 88 | public refreshPreviewNode(packageDir: string): void { |
| 89 | this.helpViewProvider.rootItem.previewChildren?.forEach(node => { |
| 90 | if(node.packageDir === packageDir){ |
| 91 | node.refresh(true); |
| 92 | } |
| 93 | }); |
| 94 | } |
| 95 | |
| 96 | public refreshRootNode(): void { |
| 97 | this.helpViewProvider.rootItem.refresh(true); |
no test coverage detected