mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-03-29 23:41:29 -07:00
- Promotes refreshed multi-row status area and footer as the default experience. - Stabilizes Composer row heights to prevent layout 'jitter' during typing and model turns. - Unifies active hook status and model loading indicators into a single, stable Row 1. - Refactors settings to use backward-compatible 'Hide' booleans (ui.hideStatusTips, ui.hideStatusWit). - Removes vestigial context usage bleed-through logic in minimal mode to align with global UX direction. - Relocates toast notifications to the top status row for improved visibility. - Updates all CLI UI snapshots and architectural tests to reflect the stabilized layout.
26 lines
559 B
Plaintext
26 lines
559 B
Plaintext
// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
|
|
|
|
exports[`ConfigInitDisplay > handles empty clients map 1`] = `
|
|
"
|
|
Spinner Working...
|
|
"
|
|
`;
|
|
|
|
exports[`ConfigInitDisplay > renders initial state 1`] = `
|
|
"
|
|
Spinner Working...
|
|
"
|
|
`;
|
|
|
|
exports[`ConfigInitDisplay > truncates list of waiting servers if too many 1`] = `
|
|
"
|
|
Spinner Connecting to MCP servers... (0/5) - Waiting for: s1, s2, s3, +2 more
|
|
"
|
|
`;
|
|
|
|
exports[`ConfigInitDisplay > updates message on McpClientUpdate event 1`] = `
|
|
"
|
|
Spinner Connecting to MCP servers... (1/2) - Waiting for: server2
|
|
"
|
|
`;
|