未验证 提交 bb0dbb3b 编写于 作者: B Benjamin Pasero 提交者: GitHub

fix vscode.open() tests (#81833)

上级 46043d41
......@@ -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));
// return Promise.all([a, b, c, d]);
// });
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]);
});
});
......@@ -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."
)
......
......@@ -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
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册