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

IQSS / dataverse-frontend / 12009485723

25 Nov 2024 11:55AM CUT coverage: 97.561%. Remained the same
12009485723

Pull #550

github

g-saracca
test: missing collection repo mock in test
Pull Request #550: Upgrade to v4 download and upload artifacts

1536 of 1602 branches covered (95.88%)

Branch coverage included in aggregate %.

3863 of 3932 relevant lines covered (98.25%)

9206.9 hits per line

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

83.33
/packages/design-system/src/lib/components/form/form-group/form-element/FormFeedback.tsx
1
import { FormControl } from 'react-bootstrap'
1,456✔
2
import { PropsWithChildren } from 'react'
3
import { Col, ColProps } from '../../../grid/Col'
4
import { Row } from '../../../grid/Row'
5

6
interface FormFeedbackProps extends ColProps {
7
  type?: 'valid' | 'invalid'
8
  as?: typeof Col | typeof Row
9
}
10

11
export function FormFeedback({
208✔
12
  type = 'valid',
×
13
  as,
14
  children,
15
  ...props
16
}: PropsWithChildren<FormFeedbackProps>) {
17
  return (
76✔
18
    <FormControl.Feedback type={type} as={as} {...props}>
19
      {children}
20
    </FormControl.Feedback>
21
  )
22
}
208✔
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