50 lines
3.2 KiB
Plaintext
50 lines
3.2 KiB
Plaintext
// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
|
|
|
|
exports[`<DurationColumn /> > renders a duration column 1`] = `
|
|
"Duration
|
|
|
|
API Time 5s
|
|
Wall Time 10s"
|
|
`;
|
|
|
|
exports[`<StatRow /> > renders a label and value 1`] = `"Test Label Test Value"`;
|
|
|
|
exports[`<StatRow /> > renders with a specific value color 1`] = `"Test Label Test Value"`;
|
|
|
|
exports[`<StatsColumn /> > renders a cumulative stats column with percentages 1`] = `
|
|
"Cumulative Stats
|
|
|
|
Input Tokens 100
|
|
Output Tokens 200
|
|
Tool Use Tokens 50
|
|
Thoughts Tokens 25
|
|
Cached Tokens 10 (2.6%)
|
|
────────────────────────────────────────────────────────────────────────────────────────────────────
|
|
Total Tokens 385"
|
|
`;
|
|
|
|
exports[`<StatsColumn /> > renders a stats column with a specific width 1`] = `
|
|
"Test Stats
|
|
|
|
Input Tokens 100
|
|
Output Tokens 200
|
|
Tool Use Tokens 50
|
|
Thoughts Tokens 25
|
|
Cached Tokens 10
|
|
──────────────────────────────────────────────────
|
|
Total Tokens 385"
|
|
`;
|
|
|
|
exports[`<StatsColumn /> > renders a stats column with children 1`] = `
|
|
"Test Stats
|
|
|
|
Input Tokens 100
|
|
Output Tokens 200
|
|
Tool Use Tokens 50
|
|
Thoughts Tokens 25
|
|
Cached Tokens 10
|
|
────────────────────────────────────────────────────────────────────────────────────────────────────
|
|
Total Tokens 385
|
|
Child Prop Child Value"
|
|
`;
|