mirror of
https://github.com/microsoft/vscode.git
synced 2026-09-27 02:27:53 +01:00
Merge pull request #150846 from microsoft/tyriar/150742
Disable shell integration error test
This commit is contained in:
@@ -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 });
|
||||
|
||||
Reference in New Issue
Block a user