From 1e838393a92b6d09d457b50828045a50cd25eea8 Mon Sep 17 00:00:00 2001 From: Tommaso Sciortino Date: Tue, 14 Oct 2025 08:16:22 -0700 Subject: [PATCH] Skip flakey tests (#11101) --- integration-tests/context-compress-interactive.test.ts | 2 +- integration-tests/file-system-interactive.test.ts | 2 +- integration-tests/replace.test.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/integration-tests/context-compress-interactive.test.ts b/integration-tests/context-compress-interactive.test.ts index 35a9e9f18c..98b1aa3a7b 100644 --- a/integration-tests/context-compress-interactive.test.ts +++ b/integration-tests/context-compress-interactive.test.ts @@ -7,7 +7,7 @@ import { expect, describe, it, beforeEach, afterEach } from 'vitest'; import { TestRig } from './test-helper.js'; -describe('Interactive Mode', () => { +describe.skip('Interactive Mode', () => { let rig: TestRig; beforeEach(() => { diff --git a/integration-tests/file-system-interactive.test.ts b/integration-tests/file-system-interactive.test.ts index 1b96e9ec10..80622dd452 100644 --- a/integration-tests/file-system-interactive.test.ts +++ b/integration-tests/file-system-interactive.test.ts @@ -7,7 +7,7 @@ import { expect, describe, it, beforeEach, afterEach } from 'vitest'; import { TestRig } from './test-helper.js'; -describe('Interactive file system', () => { +describe.skip('Interactive file system', () => { let rig: TestRig; beforeEach(() => { diff --git a/integration-tests/replace.test.ts b/integration-tests/replace.test.ts index 3634dfb82b..56c7775d1e 100644 --- a/integration-tests/replace.test.ts +++ b/integration-tests/replace.test.ts @@ -7,7 +7,7 @@ import { describe, it, expect } from 'vitest'; import { TestRig } from './test-helper.js'; -describe('replace', () => { +describe.skip('replace', () => { it('should be able to replace content in a file', async () => { const rig = new TestRig(); await rig.setup('should be able to replace content in a file');