Files
gemini-cli/packages/cli/src/ui/utils/__snapshots__/textOutput.test.ts.snap

530 B

// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
 
exports[`TextOutput > should correctly handle ANSI escape codes when determining line breaks 1`] = `
"hello
world
next"
`;
 
exports[`TextOutput > should handle ANSI codes that do not end with a newline 1`] = `
"hello
world"
`;
 
exports[`TextOutput > should handle a sequence of calls correctly 1`] = `
"first
second part
third"
`;
 
exports[`TextOutput > should handle empty strings with ANSI codes 1`] = `
"hello
world"
`;