We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
import { BottomBarPanel } from 'vscode-extension-tester'; ... const bottomBar = new BottomBarPanel();
// open await bottomBar.toggle(true); // close await bottomBar.toggle(false);
await bottomBar.maximize(); await bottomBar.restore();
const problemsView = await bottomBar.openProblemsView(); const outputView = await bottomBar.openOutputView(); const debugConsoleView = await bottomBar.openDebugConsoleView(); const terminalView = await bottomBar.openTerminalView();