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

inclusion-numerique / coop-mediation-numerique / 240dc2e0-7f8b-417f-9969-2331dc3cf6e8

01 Apr 2026 04:06PM UTC coverage: 10.684% (+3.7%) from 6.94%
240dc2e0-7f8b-417f-9969-2331dc3cf6e8

push

circleci

web-flow
Merge pull request #469 from inclusion-numerique/dev

MEP 2026-01-01

709 of 10542 branches covered (6.73%)

Branch coverage included in aggregate %.

25 of 399 new or added lines in 37 files covered. (6.27%)

820 existing lines in 91 files now uncovered.

2174 of 16443 relevant lines covered (13.22%)

2.0 hits per line

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

0.0
/apps/web/src/utils/removeNullAndUndefinedValues.ts
1
type NoUndefinedField<T> = {
2
  [P in keyof T]-?: NonNullable<T[P]>
3
}
4

UNCOV
5
export const removeNullAndUndefinedValues = <T>(data: T): NoUndefinedField<T> =>
×
UNCOV
6
  Object.fromEntries(
×
7
    Object.entries(data as Record<string, unknown>).filter(
UNCOV
8
      ([, value]) => value !== null && value !== undefined,
×
9
    ),
10
  ) as NoUndefinedField<T>
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

© 2026 Coveralls, Inc