Merge pull request #150846 from microsoft/tyriar/150742

Disable shell integration error test
This commit is contained in:
Daniel Imms
2022-05-31 06:29:08 -07:00
committed by GitHub
@@ -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 });