diff --git a/packages/vscode-extension-common-test-helpers/src/VSCodeTestHelper.ts b/packages/vscode-extension-common-test-helpers/src/VSCodeTestHelper.ts index 1ea5ba77919..74be3adfbc0 100644 --- a/packages/vscode-extension-common-test-helpers/src/VSCodeTestHelper.ts +++ b/packages/vscode-extension-common-test-helpers/src/VSCodeTestHelper.ts @@ -123,7 +123,12 @@ export class VSCodeTestHelper { console.log("DEBUG VS CODE -> SECTION VIEW"); try { const content = this.sidebarView.getContent(); - console.log(`DEBUG VS CODE -> SECTIONS: ${await content.getSections()}, FOLDERNAME: ${folderName}`); + const sections = await content.getSections(); + for (const s of sections) { + console.log(`DEBUG VS CODE -> SECTIONS TITLE LOG: ${await s.getTitle()}`); + console.log(`DEBUG VS CODE -> SECTIONS TEXT LOG: ${await s.getText()}`); + } + console.log(`DEBUG VS CODE -> FOLDERNAME: ${folderName}`); this.workspaceSectionView = await content.getSection(folderName); } catch (error) { console.log("DEBUG VS CODE -> SECTION VIEW ERROR", error);