mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-04-24 12:04:56 -07:00
68 lines
2.6 KiB
Plaintext
68 lines
2.6 KiB
Plaintext
// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
|
|
|
|
exports[`<AppHeader /> > should not render the banner when no flags are set 1`] = `
|
|
"
|
|
▝▜▄ Gemini CLI v1.0.0
|
|
▝▜▄
|
|
▗▟▀
|
|
▝▀
|
|
|
|
|
|
Tips for getting started:
|
|
1. /help for more information
|
|
2. Ask coding questions, edit code or run commands
|
|
3. Be specific for the best results
|
|
"
|
|
`;
|
|
|
|
exports[`<AppHeader /> > should not render the default banner if shown count is 5 or more 1`] = `
|
|
"
|
|
▝▜▄ Gemini CLI v1.0.0
|
|
▝▜▄
|
|
▗▟▀
|
|
▝▀
|
|
|
|
|
|
Tips for getting started:
|
|
1. /help for more information
|
|
2. Ask coding questions, edit code or run commands
|
|
3. Be specific for the best results
|
|
"
|
|
`;
|
|
|
|
exports[`<AppHeader /> > should render the banner with default text 1`] = `
|
|
"
|
|
▝▜▄ Gemini CLI v1.0.0
|
|
▝▜▄
|
|
▗▟▀
|
|
▝▀
|
|
|
|
╭──────────────────────────────────────────────────────────────────────────────────────────────────╮
|
|
│ This is the default banner │
|
|
╰──────────────────────────────────────────────────────────────────────────────────────────────────╯
|
|
|
|
Tips for getting started:
|
|
1. /help for more information
|
|
2. Ask coding questions, edit code or run commands
|
|
3. Be specific for the best results
|
|
"
|
|
`;
|
|
|
|
exports[`<AppHeader /> > should render the banner with warning text 1`] = `
|
|
"
|
|
▝▜▄ Gemini CLI v1.0.0
|
|
▝▜▄
|
|
▗▟▀
|
|
▝▀
|
|
|
|
╭──────────────────────────────────────────────────────────────────────────────────────────────────╮
|
|
│ There are capacity issues │
|
|
╰──────────────────────────────────────────────────────────────────────────────────────────────────╯
|
|
|
|
Tips for getting started:
|
|
1. /help for more information
|
|
2. Ask coding questions, edit code or run commands
|
|
3. Be specific for the best results
|
|
"
|
|
`;
|