-
Notifications
You must be signed in to change notification settings - Fork 72
BottomBarPanel
github-actions[bot] edited this page Apr 23, 2024
·
2 revisions
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();