mirror of
https://github.com/Microsoft/vscode
synced 2024-11-05 18:29:38 +00:00
disable test on proposed API
This commit is contained in:
parent
8462f11989
commit
6f7cabae9e
1 changed files with 10 additions and 10 deletions
|
@ -349,17 +349,17 @@ suite('window namespace tests', () => {
|
|||
return Promise.all([a, b]);
|
||||
});
|
||||
|
||||
test('showWorkspaceFolderPick', function () {
|
||||
const p = (<any>window).showWorkspaceFolderPick(undefined);
|
||||
// test('showWorkspaceFolderPick', function () {
|
||||
// const p = (<any>window).showWorkspaceFolderPick(undefined);
|
||||
|
||||
return commands.executeCommand('workbench.action.acceptSelectedQuickOpenItem').then(() => {
|
||||
return p.then(workspace => {
|
||||
assert.ok(true);
|
||||
}, error => {
|
||||
assert.ok(false);
|
||||
});
|
||||
});
|
||||
});
|
||||
// return commands.executeCommand('workbench.action.acceptSelectedQuickOpenItem').then(() => {
|
||||
// return p.then(workspace => {
|
||||
// assert.ok(true);
|
||||
// }, error => {
|
||||
// assert.ok(false);
|
||||
// });
|
||||
// });
|
||||
// });
|
||||
|
||||
test('Default value for showInput Box accepted even if fails validateInput, #33691', function () {
|
||||
const result = window.showInputBox({
|
||||
|
|
Loading…
Reference in a new issue