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

safe-global / safe-client-gateway / 8283691569

14 Mar 2024 03:51PM UTC coverage: 93.655% (-0.01%) from 93.665%
8283691569

Pull #1268

github

iamacook
Update schema and test
Pull Request #1268: Migrate `DataDecoded` to `zod`

1789 of 2138 branches covered (83.68%)

Branch coverage included in aggregate %.

6 of 6 new or added lines in 3 files covered. (100.0%)

5 existing lines in 2 files now uncovered.

6374 of 6578 relevant lines covered (96.9%)

364.56 hits per line

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

60.0
/src/routes/data-decode/entities/data-decoded-parameter.entity.ts
1
import { ApiProperty } from '@nestjs/swagger';
100✔
2

3
export class DataDecodedParameter {
100✔
4
  @ApiProperty()
5
  name: string;
100✔
6
  @ApiProperty()
7
  type: string;
100✔
8
  @ApiProperty()
9
  value: unknown;
100✔
10
  @ApiProperty()
11
  valueDecoded?:
100✔
12
    | Record<string, unknown>
13
    | Record<string, unknown>[]
14
    | undefined;
15

16
  constructor(
17
    name: string,
18
    type: string,
19
    value: unknown,
20
    valueDecoded:
21
      | Record<string, unknown>
22
      | Record<string, unknown>[]
23
      | undefined,
24
  ) {
UNCOV
25
    this.name = name;
×
UNCOV
26
    this.type = type;
×
UNCOV
27
    this.value = value;
×
UNCOV
28
    this.valueDecoded = valueDecoded;
×
29
  }
30
}
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