Skip error shell integration tests on Linux

Part of #150478
This commit is contained in:
Daniel Imms 2022-05-26 11:25:33 -07:00
parent 21a10ca06c
commit 8723d109a5
No known key found for this signature in database
GPG key ID: E5CF412B63651C69

View file

@ -40,7 +40,7 @@ export function setup() {
await terminal.runCommandInTerminal(`ls`);
await terminal.assertCommandDecorations({ placeholder: 1, success: 1, error: 0 });
});
it('Error', async () => {
(process.platform === 'linux' ? it.skip : it)('Error', async () => {
await createShellIntegrationProfile();
await terminal.runCommandInTerminal(`fsdkfsjdlfksjdkf`);
await terminal.assertCommandDecorations({ placeholder: 1, success: 0, error: 1 });