terminal - skip flaky tests (#241678)

This commit is contained in:
Benjamin Pasero
2025-02-24 08:41:24 +01:00
committed by GitHub
parent 5063c3df13
commit c66aef66c1

View File

@@ -142,7 +142,7 @@ import { assertNoRpc } from '../utils';
await closeTerminalAsync(terminal);
});
test('TerminalShellExecution.read iterables should be available between the start and end execution events', async () => {
test.skip('TerminalShellExecution.read iterables should be available between the start and end execution events', async () => {
const { terminal, shellIntegration } = await createTerminalAndWaitForShellIntegration();
const events: string[] = [];
disposables.push(window.onDidStartTerminalShellExecution(() => events.push('start')));
@@ -164,7 +164,7 @@ import { assertNoRpc } from '../utils';
await closeTerminalAsync(terminal);
});
test('TerminalShellExecution.read events should fire with contents of command', async () => {
test.skip('TerminalShellExecution.read events should fire with contents of command', async () => {
const { terminal, shellIntegration } = await createTerminalAndWaitForShellIntegration();
const events: string[] = [];
@@ -179,7 +179,7 @@ import { assertNoRpc } from '../utils';
await closeTerminalAsync(terminal);
});
test('TerminalShellExecution.read events should give separate iterables per call', async () => {
test.skip('TerminalShellExecution.read events should give separate iterables per call', async () => {
const { terminal, shellIntegration } = await createTerminalAndWaitForShellIntegration();
const { execution, endEvent } = executeCommandAsync(shellIntegration, 'echo hello');