Skip to content

Commit

Permalink
Skip error shell integration tests on Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
Tyriar committed May 26, 2022
1 parent 21a10ca commit 8723d10
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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 });
Expand Down

0 comments on commit 8723d10

Please sign in to comment.