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

safe-global / safe-client-gateway / 13541491615

26 Feb 2025 10:12AM UTC coverage: 90.703% (-0.09%) from 90.792%
13541491615

Pull #2378

github

hectorgomezv
Remove test:e2e:cov temporarily
Pull Request #2378: refactor: confirmation refinement

3050 of 3701 branches covered (82.41%)

Branch coverage included in aggregate %.

59 of 73 new or added lines in 2 files covered. (80.82%)

24 existing lines in 11 files now uncovered.

10423 of 11153 relevant lines covered (93.45%)

503.58 hits per line

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

90.0
/src/routes/data-decode/data-decoded.controller.ts
1
import { Body, Controller, HttpCode, Param, Post } from '@nestjs/common';
104✔
2
import { ApiOkResponse, ApiTags } from '@nestjs/swagger';
104✔
3
import { DataDecodedService } from '@/routes/data-decode/data-decoded.service';
104✔
4
import { DataDecoded } from '@/routes/data-decode/entities/data-decoded.entity';
104✔
5
import {
104✔
6
  TransactionDataDto,
7
  TransactionDataDtoSchema,
8
} from '@/routes/common/entities/transaction-data.dto.entity';
9
import { ValidationPipe } from '@/validation/pipes/validation.pipe';
104✔
10

11
@ApiTags('data-decoded')
12
@Controller({
13
  path: '',
14
  version: '1',
15
})
16
export class DataDecodedController {
104✔
17
  constructor(private readonly dataDecodedService: DataDecodedService) {}
1,458✔
18

19
  @ApiOkResponse({ type: DataDecoded })
20
  @HttpCode(200)
21
  @Post('chains/:chainId/data-decoder')
22
  async getDataDecoded(
104✔
23
    @Param('chainId') chainId: string,
24
    @Body(new ValidationPipe(TransactionDataDtoSchema))
25
    getDataDecodedDto: TransactionDataDto,
26
  ): Promise<DataDecoded> {
UNCOV
27
    return this.dataDecodedService.getDataDecoded({
×
28
      chainId,
29
      getDataDecodedDto,
30
    });
31
  }
32
}
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