From 5e688b8113b6ee005baee85ccd22d96a4daf9919 Mon Sep 17 00:00:00 2001 From: Jacob Richman Date: Thu, 9 Oct 2025 14:25:47 -0700 Subject: [PATCH] Skip should fail safely when old_string is not found test (#10853) --- integration-tests/replace.test.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/integration-tests/replace.test.ts b/integration-tests/replace.test.ts index b199f7e9ef..b8a21073ac 100644 --- a/integration-tests/replace.test.ts +++ b/integration-tests/replace.test.ts @@ -92,7 +92,8 @@ describe('replace', () => { expect(newFileContent).toBe(expectedContent); }); - it('should fail safely when old_string is not found', async () => { + //TODO - https://github.com/google-gemini/gemini-cli/issues/10851 + it.skip('should fail safely when old_string is not found', async () => { const rig = new TestRig(); await rig.setup('should fail safely when old_string is not found'); const fileName = 'no_match.txt';