From 4f162ecd2cd561c660242da484c59c8ac348742f Mon Sep 17 00:00:00 2001 From: mkorwel Date: Tue, 21 Apr 2026 14:20:53 +0000 Subject: [PATCH] test: fix stale expectation in bootstrap test --- packages/cli/integration-tests/bootstrap.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/cli/integration-tests/bootstrap.test.ts b/packages/cli/integration-tests/bootstrap.test.ts index 553bd6f8e2..49cb5dab92 100644 --- a/packages/cli/integration-tests/bootstrap.test.ts +++ b/packages/cli/integration-tests/bootstrap.test.ts @@ -27,10 +27,10 @@ describe('Gemini CLI TTY Bootstrap', () => { // The ready marker we expect to see const readyMarker = 'Type your message or @path/to/file'; - const welcomeMessage = 'Welcome to Gemini CLI!'; + const tipsMessage = 'tips for getting started:'; // Verify the initial render completes and displays the markers - await run.expectText(welcomeMessage, 30000); + await run.expectText(tipsMessage, 30000); await run.expectText(readyMarker, 30000); // If we reached here, the smoke test passed