Disable shell integration error test

Part of #150742
This commit is contained in:
Daniel Imms 2022-05-31 06:19:35 -07:00
parent 9aa946329d
commit d30748b76d
No known key found for this signature in database
GPG key ID: E5CF412B63651C69

View file

@ -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 });