From b45bd5ff7b0c68456cb1927eb9f6c389376ce511 Mon Sep 17 00:00:00 2001 From: shishu314 Date: Wed, 8 Oct 2025 15:24:42 -0400 Subject: [PATCH] Fix(infra) - Skip file system interactive test since it is currently broken (#10734) Co-authored-by: gemini-cli-robot --- integration-tests/file-system-interactive.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration-tests/file-system-interactive.test.ts b/integration-tests/file-system-interactive.test.ts index ea23115539..4142966372 100644 --- a/integration-tests/file-system-interactive.test.ts +++ b/integration-tests/file-system-interactive.test.ts @@ -18,7 +18,7 @@ describe('Interactive file system', () => { await rig.cleanup(); }); - it.skipIf(process.platform === 'win32')( + it.skipIf(process.platform === 'win32' || process.platform === 'darwin')( 'should perform a read-then-write sequence', async () => { const fileName = 'version.txt';