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

safe-global / safe-client-gateway / 7959999835

19 Feb 2024 01:04PM CUT coverage: 93.953% (+0.02%) from 93.936%
7959999835

Pull #1154

github

iamacook
Remove checksum from cache router
Pull Request #1154: Throw custom errors from relayer

1643 of 1954 branches covered (84.08%)

Branch coverage included in aggregate %.

46 of 46 new or added lines in 10 files covered. (100.0%)

3 existing lines in 2 files now uncovered.

6141 of 6331 relevant lines covered (97.0%)

193.77 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';
94✔
2

3
export class DataDecodedParameter {
94✔
4
  @ApiProperty()
5
  name: string;
94✔
6
  @ApiProperty()
7
  type: string;
94✔
8
  @ApiProperty()
9
  value: unknown;
94✔
10
  @ApiProperty()
11
  valueDecoded?:
94✔
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
  ) {
25
    this.name = name;
×
26
    this.type = type;
×
27
    this.value = value;
×
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

© 2025 Coveralls, Inc