skip failing test on win32 (#114248)

This commit is contained in:
Benjamin Pasero
2021-01-13 08:13:18 +01:00
parent fd0a3a12e7
commit d78fad382a
+1 -1
View File
@@ -39,7 +39,7 @@ if (platform.isWindows) {
checkPath(exePath!);
});
test('Can enumerate PowerShells', async () => {
test.skip('Can enumerate PowerShells', async () => { // https://github.com/microsoft/vscode/issues/114248
const pwshs = new Array<IPowerShellExeDetails>();
for await (const p of enumeratePowerShellInstallations()) {
pwshs.push(p);