mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-04-13 06:40:33 -07:00
37 lines
703 B
Plaintext
37 lines
703 B
Plaintext
// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
|
|
|
|
exports[`ToastDisplay > renders Ctrl+C prompt 1`] = `
|
|
"Press Ctrl+C again to exit.
|
|
"
|
|
`;
|
|
|
|
exports[`ToastDisplay > renders Ctrl+D prompt 1`] = `
|
|
"Press Ctrl+D again to exit.
|
|
"
|
|
`;
|
|
|
|
exports[`ToastDisplay > renders Escape prompt when buffer is NOT empty 1`] = `
|
|
"Press Esc again to clear prompt.
|
|
"
|
|
`;
|
|
|
|
exports[`ToastDisplay > renders Escape prompt when buffer is empty 1`] = `
|
|
"Press Esc again to rewind.
|
|
"
|
|
`;
|
|
|
|
exports[`ToastDisplay > renders Queue Error Message 1`] = `
|
|
"Queue Error
|
|
"
|
|
`;
|
|
|
|
exports[`ToastDisplay > renders hint message 1`] = `
|
|
"This is a hint
|
|
"
|
|
`;
|
|
|
|
exports[`ToastDisplay > renders warning message 1`] = `
|
|
"This is a warning
|
|
"
|
|
`;
|