test: fix stale expectation in bootstrap test

This commit is contained in:
mkorwel
2026-04-21 14:20:53 +00:00
parent 13fc9c6d76
commit 4f162ecd2c
@@ -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