fix vscode.open() tests (#81833)

This commit is contained in:
Benjamin Pasero 2019-10-02 12:28:48 +02:00 committed by GitHub
parent 46043d41c8
commit bb0dbb3b9c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 10 additions and 8 deletions

View file

@ -104,13 +104,13 @@ suite('commands namespace tests', () => {
return Promise.all([a, b, c, d, e]);
});
// test('api-command: vscode.open', function () {
// 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));
// let d = commands.executeCommand('vscode.open', uri, true).then(() => assert.ok(false), () => assert.ok(true));
test('api-command: vscode.open', function () {
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));
let d = commands.executeCommand('vscode.open', uri, true).then(() => assert.ok(false), () => assert.ok(true));
// return Promise.all([a, b, c, d]);
// });
return Promise.all([a, b, c, d]);
});
});

View file

@ -20,6 +20,7 @@ if "%INTEGRATION_TEST_ELECTRON_PATH%"=="" (
call yarn gulp compile-extension:css-language-features-server
call yarn gulp compile-extension:html-language-features-server
call yarn gulp compile-extension:json-language-features-server
call yarn gulp compile-extension:image-preview
echo "Running integration tests with '%INTEGRATION_TEST_ELECTRON_PATH%' as build."
)

View file

@ -29,6 +29,7 @@ else
yarn gulp compile-extension:css-language-features-server
yarn gulp compile-extension:html-language-features-server
yarn gulp compile-extension:json-language-features-server
yarn gulp compile-extension:image-preview
echo "Running integration tests with '$INTEGRATION_TEST_ELECTRON_PATH' as build."
fi