allow to provide ViewColumn with 'vscode.previewHtml' command

This commit is contained in:
Johannes Rieken
2016-01-20 15:48:15 +01:00
parent eb2daf6718
commit a9c1895117
3 changed files with 19 additions and 9 deletions

View File

@@ -49,7 +49,7 @@ suite("commands namespace tests", () => {
let virtualDocumentUri = Uri.parse('speciale://authority/path')
return commands.executeCommand('workbench.html.preview', virtualDocumentUri).then(success => {
return commands.executeCommand('vscode.previewHtml', virtualDocumentUri).then(success => {
assert.ok(success);
registration.dispose();
});