mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-04-23 03:24:42 -07:00
237864eb63
Co-authored-by: jacob314 <jacob314@gmail.com>
27 lines
536 B
Plaintext
27 lines
536 B
Plaintext
// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
|
|
|
|
exports[`QuotaDisplay > should NOT render reset time when terse is true 1`] = `
|
|
"85%
|
|
"
|
|
`;
|
|
|
|
exports[`QuotaDisplay > should render critical when used >= 95% 1`] = `
|
|
"96% used
|
|
"
|
|
`;
|
|
|
|
exports[`QuotaDisplay > should render terse limit reached message 1`] = `
|
|
"Limit reached
|
|
"
|
|
`;
|
|
|
|
exports[`QuotaDisplay > should render warning when used >= 80% 1`] = `
|
|
"85% used
|
|
"
|
|
`;
|
|
|
|
exports[`QuotaDisplay > should render with reset time when provided 1`] = `
|
|
"85% used (Limit resets in 1h)
|
|
"
|
|
`;
|