mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-25 02:58:56 +01:00
Disable executeCommand test
Looking into this exact thing later in #221399 anyway
This commit is contained in:
@@ -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;
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user