From ab5bb7bf729f04079cf05205812261710eccdf55 Mon Sep 17 00:00:00 2001 From: Christof Marti Date: Tue, 23 Oct 2018 21:06:02 +0200 Subject: [PATCH] Revert "Disable failing tests" This reverts commit 383d1417e6bed03024fb39b0c2bcf6c9bcc8536c. --- .../vscode-api-tests/src/singlefolder-tests/window.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/extensions/vscode-api-tests/src/singlefolder-tests/window.test.ts b/extensions/vscode-api-tests/src/singlefolder-tests/window.test.ts index 7218cdb9042..dce3b608da5 100644 --- a/extensions/vscode-api-tests/src/singlefolder-tests/window.test.ts +++ b/extensions/vscode-api-tests/src/singlefolder-tests/window.test.ts @@ -382,7 +382,7 @@ suite('window namespace tests', () => { }); - test.skip('showQuickPick, accept first', async function () { + test('showQuickPick, accept first', async function () { const pick = window.showQuickPick(['eins', 'zwei', 'drei']); await commands.executeCommand('workbench.action.acceptSelectedQuickOpenItem'); assert.equal(await pick, 'eins'); @@ -434,7 +434,7 @@ suite('window namespace tests', () => { return unexpected; }); - test.skip('showQuickPick, keep selection (Microsoft/vscode-azure-account#67)', async function () { + test('showQuickPick, keep selection (Microsoft/vscode-azure-account#67)', async function () { const picks = window.showQuickPick([ { label: 'eins' }, { label: 'zwei', picked: true }, -- GitLab