Set up vscode integration test

This commit is contained in:
ColemanRoo
2025-01-03 14:26:26 -06:00
parent 657e2377dd
commit 66c5485534
7 changed files with 387 additions and 15 deletions

View File

@@ -34,4 +34,9 @@ export interface ClineAPI {
* Simulates pressing the secondary button in the chat interface.
*/
pressSecondaryButton(): Promise<void>
/**
* The sidebar provider instance.
*/
sidebarProvider: ClineSidebarProvider
}

View File

@@ -56,6 +56,8 @@ export function createClineAPI(outputChannel: vscode.OutputChannel, sidebarProvi
invoke: "secondaryButtonClick",
})
},
sidebarProvider: sidebarProvider,
}
return api