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

inclusion-numerique / coop-mediation-numerique / eb13771c-78ed-464f-a6ad-f5f351160114

12 Feb 2026 08:14AM UTC coverage: 7.176% (-3.1%) from 10.253%
eb13771c-78ed-464f-a6ad-f5f351160114

push

circleci

hugues-m
feat: change dataspace contract end date rules for sync

(cherry picked from commit ecb6908c1)

469 of 9914 branches covered (4.73%)

Branch coverage included in aggregate %.

0 of 12 new or added lines in 3 files covered. (0.0%)

1207 existing lines in 143 files now uncovered.

1330 of 15156 relevant lines covered (8.78%)

39.5 hits per line

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

0.0
/apps/web/src/utils/addMutationLog.ts
1
import { prismaClient } from '@app/web/prismaClient'
2
/**
3
 * Create a mutation for the audit log, without blocking the main thread
4
 */
5
import type { Prisma } from '@prisma/client'
6
import * as Sentry from '@sentry/nextjs'
7

UNCOV
8
export const addMutationLogAsync = (
×
9
  data: Prisma.MutationUncheckedCreateInput,
10
) =>
UNCOV
11
  prismaClient.mutation.create({
×
12
    data: {
13
      ...data,
14
    },
15
  })
16

UNCOV
17
export const addMutationLog = (data: Prisma.MutationUncheckedCreateInput) => {
×
UNCOV
18
  addMutationLogAsync(data).catch((error) =>
×
19
    Sentry.captureException(error, {
×
20
      data: {
21
        addMutationData: data,
22
      },
23
    }),
24
  )
25
}
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