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

IQSS / dataverse-frontend / 10994704467

23 Sep 2024 12:54PM UTC coverage: 98.403%. Remained the same
10994704467

push

github

g-saracca
Merge branch 'develop' into feat/484-collection-page-results-of-all-types

86 of 90 branches covered (95.56%)

Branch coverage included in aggregate %.

4 of 5 new or added lines in 3 files covered. (80.0%)

222 of 223 relevant lines covered (99.55%)

198.27 hits per line

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

80.0
/packages/design-system/src/lib/components/tabs/Tab.tsx
1
import { PropsWithChildren } from 'react'
126✔
2
import { Tab as TabBS } from 'react-bootstrap'
3

4
export interface TabProps {
5
  title: string
6
  eventKey: string
7
  disabled?: boolean
8
}
9

18✔
NEW
10
export function Tab({ title, eventKey, disabled = false, children }: PropsWithChildren<TabProps>) {
×
11
  return (
12
    <TabBS title={title} eventKey={eventKey} disabled={disabled}>
13
      {children}
14
    </TabBS>
15
  )
18✔
16
}
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