Skip to content

Commit

Permalink
Disable shell integration error test
Browse files Browse the repository at this point in the history
Part of #150742
  • Loading branch information
Tyriar committed May 31, 2022
1 parent 9aa9463 commit d30748b
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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 });
Expand Down

0 comments on commit d30748b

Please sign in to comment.