mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-04-01 08:51:11 -07:00
32 lines
738 B
Plaintext
32 lines
738 B
Plaintext
// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
|
|
|
|
exports[`ConfigInitDisplay > handles empty clients map 1`] = `
|
|
"
|
|
Spinner Initializing...
|
|
"
|
|
`;
|
|
|
|
exports[`ConfigInitDisplay > renders initial state 1`] = `
|
|
"
|
|
Spinner Initializing...
|
|
"
|
|
`;
|
|
|
|
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 > truncates list of waiting servers if too many 2`] = `
|
|
"
|
|
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
|
|
"
|
|
`;
|