forked from redhat-developer/vscode-extension-tester
-
Notifications
You must be signed in to change notification settings - Fork 0
WindowControls
github-actions[bot] edited this page Oct 7, 2024
·
1 revision

Controls to the whole window. Use at your own risk.
import { TitleBar } from 'vscode-extension-tester';
...
const controls = new TitleBar().getWindowControls();// minimize
await controls.minimize();
// maximize
await controls.maximize();
// restore
await controls.restore();
// close... if you dare
await controls.close();