• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

stacklok / codegate-ui / 13325211149

14 Feb 2025 08:17AM UTC coverage: 68.625% (+0.02%) from 68.603%
13325211149

Pull #315

github

web-flow
Merge 7bf78fe19 into 0805f21ad
Pull Request #315: chore: configure prettier & apply formatting

364 of 590 branches covered (61.69%)

Branch coverage included in aggregate %.

360 of 519 new or added lines in 99 files covered. (69.36%)

5 existing lines in 4 files now uncovered.

769 of 1061 relevant lines covered (72.48%)

71.26 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

33.33
/src/features/dashboard-messages/components/token-usage-icon.tsx
1
import { ArrowUp, ArrowDown } from '@untitled-ui/icons-react'
2

3
export function TokenUsageIcon({
4
  iconType: iconType,
5
  ...props
6
}: {
7
  iconType: 'input' | 'output'
8
  className?: string
9
}) {
10
  switch (iconType) {
26!
11
    case 'input':
12
      return <ArrowUp {...props} />
13
    case 'output':
14
      return <ArrowDown {...props} />
15
    default:
NEW
16
      iconType satisfies never
×
17
  }
18
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc