-
Notifications
You must be signed in to change notification settings - Fork 76
EditorView
Jan Richter edited this page Apr 24, 2019
·
10 revisions
import { EditorView } from 'vscode-extension-tester';
...
const editorView = new EditorView();
// open editor tab by title
const editor = await editorView.openEditorTab('package.json');
// close an editor tab by title
await editorView.closeEditor('package.json');
// close all open tabs
await editorView.closeAllEditors();
const titles = await editorView.getOpenEditorTitles();