From 82ec78a52858d47db00a6f0403dbb96c920ee7a1 Mon Sep 17 00:00:00 2001 From: Alex Ross <38270282+alexr00@users.noreply.github.com> Date: Wed, 1 Apr 2026 14:19:38 +0200 Subject: [PATCH] Disable more flaky tests (#307102) --- .../src/singlefolder-tests/chat.runInTerminal.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/extensions/vscode-api-tests/src/singlefolder-tests/chat.runInTerminal.test.ts b/extensions/vscode-api-tests/src/singlefolder-tests/chat.runInTerminal.test.ts index 93f2dfac4d9..c9ce206e5e9 100644 --- a/extensions/vscode-api-tests/src/singlefolder-tests/chat.runInTerminal.test.ts +++ b/extensions/vscode-api-tests/src/singlefolder-tests/chat.runInTerminal.test.ts @@ -185,7 +185,7 @@ function extractTextContent(result: vscode.LanguageModelToolResult): string { suite('sandbox off', () => { - test('echo command returns exactly the echoed text', async function () { + test.skip('echo command returns exactly the echoed text', async function () { this.timeout(60000); const marker = `MARKER_${Date.now()}_ECHO`; @@ -204,7 +204,7 @@ function extractTextContent(result: vscode.LanguageModelToolResult): string { assert.strictEqual(output.trim(), 'Command produced no output'); }); - test('multi-line output preserves all lines in order', async function () { + test.skip('multi-line output preserves all lines in order', async function () { this.timeout(60000); const m1 = `M1_${Date.now()}`;