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

safe-global / safe-client-gateway / 12631213015

06 Jan 2025 10:54AM UTC coverage: 90.148% (-0.1%) from 90.284%
12631213015

Pull #2222

github

PooyaRaki
fix review comments
Pull Request #2222: Add Authentication to Redis

2831 of 3516 branches covered (80.52%)

Branch coverage included in aggregate %.

6 of 7 new or added lines in 2 files covered. (85.71%)

13 existing lines in 8 files now uncovered.

9641 of 10319 relevant lines covered (93.43%)

468.37 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 { DataDecodedParameter as DomainDataDecodedParameter } from '@/domain/data-decoder/entities/data-decoded.entity';
2
import { ApiProperty, ApiPropertyOptional } from '@nestjs/swagger';
122✔
3

4
export class DataDecodedParameter implements DomainDataDecodedParameter {
122✔
5
  @ApiProperty()
6
  name: string;
122✔
7
  @ApiProperty()
8
  type: string;
122✔
9
  @ApiProperty()
10
  value: Required<unknown>;
122✔
11
  @ApiPropertyOptional({
12
    oneOf: [{ type: 'object' }, { type: 'array', items: { type: 'object' } }],
13
    nullable: true,
14
  })
15
  valueDecoded: Record<string, unknown> | Record<string, unknown>[] | null;
122✔
16

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