From d30748b76db457aae84876f46990ccb585b08380 Mon Sep 17 00:00:00 2001 From: Daniel Imms <2193314+Tyriar@users.noreply.github.com> Date: Tue, 31 May 2022 06:19:35 -0700 Subject: [PATCH] Disable shell integration error test Part of #150742 --- .../src/areas/terminal/terminal-shellIntegration.test.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/smoke/src/areas/terminal/terminal-shellIntegration.test.ts b/test/smoke/src/areas/terminal/terminal-shellIntegration.test.ts index 58f861d2b65..c0cd65ac867 100644 --- a/test/smoke/src/areas/terminal/terminal-shellIntegration.test.ts +++ b/test/smoke/src/areas/terminal/terminal-shellIntegration.test.ts @@ -40,7 +40,9 @@ export function setup() { await terminal.runCommandInTerminal(`ls`); await terminal.assertCommandDecorations({ placeholder: 1, success: 1, error: 0 }); }); - it('Error', async () => { + // TODO: Skip error case on all platforms, it seems particularly flaky currently + // https://github.com/microsoft/vscode/issues/150742 + it.skip('Error', async () => { await createShellIntegrationProfile(); await terminal.runCommandInTerminal(`fsdkfsjdlfksjdkf`); await terminal.assertCommandDecorations({ placeholder: 1, success: 0, error: 1 });