• 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/serialization.ts
1
import { Decimal } from 'decimal.js'
2
import superjson from 'superjson'
3
import { SuperJSONResult } from 'superjson/dist/types'
4

UNCOV
5
superjson.registerCustom<Decimal, string>(
×
6
  {
7
    isApplicable: (v): v is Decimal => Decimal.isDecimal(v),
×
8
    serialize: (v) => v.toJSON(),
×
9
    deserialize: (v) => new Decimal(v),
×
10
  },
11
  'decimal.js',
12
)
13

14
/** ⚠️ When serializing server data to pass to client components it becomes available to the browser.
15
 * Always check what is included in the data you serialize before passing it to a client component.
16
 */
17

18
// Helper type to obfuscate serialized data
19
// biome-ignore lint/correctness/noUnusedVariables: We need the unused <T> to carry the type on deserialization.
20
export type Serialized<T> = { __serialized: symbol }
21

UNCOV
22
export const serialize = <T>(data: T): Serialized<T> =>
×
23
  superjson.serialize(data) as never as Serialized<T>
×
24

UNCOV
25
export const deserialize = <T>(data: Serialized<T>): T =>
×
26
  superjson.deserialize(data as never as SuperJSONResult)
×
27

UNCOV
28
export const transformer = { serialize, deserialize }
×
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