mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-24 12:19:20 +00:00
revert back to electron 6 (#89245)
This commit is contained in:
@@ -105,7 +105,7 @@ suite('commands namespace tests', () => {
|
||||
});
|
||||
|
||||
test('api-command: vscode.open', function () {
|
||||
let uri = Uri.parse(workspace.workspaceFolders![0].uri.toString() + '/far.js');
|
||||
let uri = Uri.parse(workspace.workspaceFolders![0].uri.toString() + '/image.png');
|
||||
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));
|
||||
|
||||
@@ -13,8 +13,7 @@ const webviewId = 'myWebview';
|
||||
|
||||
const testDocument = join(vscode.workspace.rootPath || '', './bower.json');
|
||||
|
||||
// TODO: Re-enable after https://github.com/microsoft/vscode/issues/88415
|
||||
suite.skip('Webview tests', () => {
|
||||
suite('Webview tests', () => {
|
||||
const disposables: vscode.Disposable[] = [];
|
||||
|
||||
function _register<T extends vscode.Disposable>(disposable: T) {
|
||||
|
||||
Reference in New Issue
Block a user