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

inclusion-numerique / coop-mediation-numerique / fd0f793a-a8c6-4a69-81c3-56827ded376f

09 Apr 2026 01:22PM UTC coverage: 7.465% (-3.1%) from 10.614%
fd0f793a-a8c6-4a69-81c3-56827ded376f

push

circleci

web-flow
Merge pull request #472 from inclusion-numerique/feat/api-beneficiaires

feat(api): add beneficiaires data to activites API endpoint

500 of 10550 branches covered (4.74%)

Branch coverage included in aggregate %.

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

1379 existing lines in 153 files now uncovered.

1500 of 16241 relevant lines covered (9.24%)

36.95 hits per line

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

83.33
/apps/web/src/prismaClient.ts
1
import { PrismaClient } from '@prisma/client'
1✔
2

3
// https://www.prisma.io/docs/guides/other/troubleshooting-orm/help-articles/nextjs-prisma-client-dev-practices
4
const globalForPrisma = global as unknown as {
1✔
5
  prismaClient: PrismaClient | undefined
6
}
7

8
const debugLog = process.env.PRISMA_ENABLE_LOGGING === '1'
1✔
9

UNCOV
10
export const prismaClient =
×
11
  globalForPrisma.prismaClient ??
1✔
12
  new PrismaClient({
13
    log: debugLog
1!
14
      ? [
15
          {
16
            emit: 'stdout',
17
            level: 'query',
18
          },
19
          {
20
            emit: 'stdout',
21
            level: 'error',
22
          },
23
          {
24
            emit: 'stdout',
25
            level: 'info',
26
          },
27
          {
28
            emit: 'stdout',
29
            level: 'warn',
30
          },
31
        ]
32
      : undefined,
33
  })
34

35
if (process.env.NODE_ENV !== 'production') {
1✔
36
  globalForPrisma.prismaClient = prismaClient
1✔
37
}
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