-
Notifications
You must be signed in to change notification settings - Fork 77
BottomBarPanel
Jan Richter edited this page Apr 24, 2019
·
3 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();