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

inclusion-numerique / coop-mediation-numerique / 01e87162-ee7d-4b4d-92e3-2e038f181bff

22 May 2026 11:30AM UTC coverage: 13.181% (+6.2%) from 6.955%
01e87162-ee7d-4b4d-92e3-2e038f181bff

push

circleci

web-flow
MEP 2026-05-22

Dev

445 of 5226 branches covered (8.52%)

Branch coverage included in aggregate %.

7 of 19 new or added lines in 2 files covered. (36.84%)

905 existing lines in 92 files now uncovered.

1214 of 7360 relevant lines covered (16.49%)

4.66 hits per line

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

33.33
/apps/web/src/utils/formatNumber.ts
1
export const numberToString = (value: number) => value?.toLocaleString('fr-FR')
2✔
2

3
export const optionalNumberToString = <T>(
2✔
4
  value?: number | null,
5
  defaultValue?: T,
6
): string | T =>
7
  typeof value === 'number' ? numberToString(value) : (defaultValue ?? '')
×
8

9
export const numberToPercentage = (value: number) =>
2✔
UNCOV
10
  `${value.toLocaleString('fr-FR', {
×
11
    minimumFractionDigits: 0,
12
    maximumFractionDigits: 1,
13
  })} %`
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