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

inclusion-numerique / coop-mediation-numerique / d4144e8b-1bbe-44c2-90e9-6d614bcf9fdc

09 Apr 2026 02:35PM UTC coverage: 10.603% (+3.1%) from 7.465%
d4144e8b-1bbe-44c2-90e9-6d614bcf9fdc

push

circleci

KGALLET
chore: remove quick access menu mobile

698 of 10550 branches covered (6.62%)

Branch coverage included in aggregate %.

2166 of 16460 relevant lines covered (13.16%)

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✔
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