chore: update to electron 7 (#89260)

* Revert "revert back to electron 6 (#89245)"

This reverts commit 5d498736f4.

* chore: update electron@7.1.11
This commit is contained in:
Robo
2020-02-04 12:56:23 -08:00
committed by GitHub
parent 7a5a375afe
commit 01989df7c9
16 changed files with 374 additions and 290 deletions

View File

@@ -105,7 +105,7 @@ suite('commands namespace tests', () => {
});
test('api-command: vscode.open', function () {
let uri = Uri.parse(workspace.workspaceFolders![0].uri.toString() + '/image.png');
let uri = Uri.parse(workspace.workspaceFolders![0].uri.toString() + '/far.js');
let a = commands.executeCommand('vscode.open', uri).then(() => assert.ok(true), () => assert.ok(false));
let b = commands.executeCommand('vscode.open', uri, ViewColumn.Two).then(() => assert.ok(true), () => assert.ok(false));
let c = commands.executeCommand('vscode.open').then(() => assert.ok(false), () => assert.ok(true));