Skip should fail safely when old_string is not found test (#10853)

This commit is contained in:
Jacob Richman
2025-10-09 14:25:47 -07:00
committed by GitHub
parent 5f96eba54a
commit 5e688b8113

View File

@@ -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';