Disable more flaky tests (#307102)

This commit is contained in:
Alex Ross
2026-04-01 14:19:38 +02:00
committed by GitHub
parent 264251b68e
commit 82ec78a528

View File

@@ -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()}`;