Skip to content

Commit

Permalink
Disable executeCommand test
Browse files Browse the repository at this point in the history
Looking into this exact thing later in #221399 anyway
  • Loading branch information
Tyriar committed Jul 11, 2024
1 parent 7279c65 commit f46e27c
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,8 @@ import { assertNoRpc } from '../utils';
await closeTerminalAsync(terminal);
});

test('executeCommand(commandLine)', async () => {
// TODO: https://github.com/microsoft/vscode/issues/221399
(platform() === 'linux' ? test.skip : test)('executeCommand(commandLine)', async () => {
const { terminal, shellIntegration } = await createTerminalAndWaitForShellIntegration();
const { execution, endEvent } = executeCommandAsync(shellIntegration, 'echo hello');
const executionSync = await execution;
Expand All @@ -211,7 +212,8 @@ import { assertNoRpc } from '../utils';
await closeTerminalAsync(terminal);
});

test('executeCommand(executable, args)', async () => {
// TODO: https://github.com/microsoft/vscode/issues/221399
(platform() === 'linux' ? test.skip : test)('executeCommand(executable, args)', async () => {
const { terminal, shellIntegration } = await createTerminalAndWaitForShellIntegration();
const { execution, endEvent } = executeCommandAsync(shellIntegration, 'echo', ['hello']);
const executionSync = await execution;
Expand Down

0 comments on commit f46e27c

Please sign in to comment.