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

inclusion-numerique / coop-mediation-numerique / 458bf4a5-e7d4-4514-b95c-86678cd78b55

08 Apr 2026 12:12PM UTC coverage: 10.61% (+3.1%) from 7.472%
458bf4a5-e7d4-4514-b95c-86678cd78b55

push

circleci

web-flow
Merge pull request #471 from inclusion-numerique/feat/quick-access

feat: quick access items

698 of 10544 branches covered (6.62%)

Branch coverage included in aggregate %.

0 of 5 new or added lines in 1 file covered. (0.0%)

955 existing lines in 97 files now uncovered.

2166 of 16449 relevant lines covered (13.17%)

1.99 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