From 5aab793cfdffade162789410bd4eb016adf96868 Mon Sep 17 00:00:00 2001 From: shishu314 Date: Thu, 9 Oct 2025 18:00:43 -0400 Subject: [PATCH] fix(infra) - Fix interactive system error (#10805) Co-authored-by: gemini-cli-robot Co-authored-by: Gal Zahavi <38544478+galz10@users.noreply.github.com> --- integration-tests/file-system-interactive.test.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/integration-tests/file-system-interactive.test.ts b/integration-tests/file-system-interactive.test.ts index 4142966372..17ab9db774 100644 --- a/integration-tests/file-system-interactive.test.ts +++ b/integration-tests/file-system-interactive.test.ts @@ -18,11 +18,11 @@ describe('Interactive file system', () => { await rig.cleanup(); }); - it.skipIf(process.platform === 'win32' || process.platform === 'darwin')( + it.skipIf(process.platform === 'win32')( 'should perform a read-then-write sequence', async () => { const fileName = 'version.txt'; - await rig.setup('interactive-read-then-write'); + rig.setup('interactive-read-then-write'); rig.createFile(fileName, '1.0.0'); const { ptyProcess } = rig.runInteractive(); @@ -38,7 +38,7 @@ describe('Interactive file system', () => { } // Wait for the app to be ready - const isReady = await rig.waitForText('Type your message', 15000); + const isReady = await rig.waitForText('Type your message', 30000); expect( isReady, 'CLI did not start up in interactive mode correctly', @@ -52,7 +52,7 @@ describe('Interactive file system', () => { const readCall = await rig.waitForToolCall('read_file', 30000); expect(readCall, 'Expected to find a read_file tool call').toBe(true); - const containsExpectedVersion = await rig.waitForText('1.0.0', 15000); + const containsExpectedVersion = await rig.waitForText('1.0.0', 30000); expect( containsExpectedVersion, 'Expected to see version "1.0.0" in output',