Revert "Disable failing tests"

This reverts commit 383d1417e6.
This commit is contained in:
Christof Marti
2018-10-23 21:06:02 +02:00
parent 700686a7e5
commit ab5bb7bf72

View File

@@ -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 },