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

safe-global / safe-client-gateway-nest / 5941127155

22 Aug 2023 03:52PM UTC coverage: 92.245%. First build
5941127155

Pull #631

github

GitHub
Merge daff89e0f into c8aa71879
Pull Request #631:

966 of 1156 branches covered (83.56%)

Branch coverage included in aggregate %.

127 of 144 new or added lines in 22 files covered. (88.19%)

4494 of 4763 relevant lines covered (94.35%)

72.34 hits per line

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

66.67
/src/routes/transactions/entities/settings-change-transaction.entity.ts
1
import { ApiProperty, ApiPropertyOptional } from '@nestjs/swagger';
32✔
2
import { DataDecoded } from '../../data-decode/entities/data-decoded.entity';
32✔
3
import { SettingsChange } from './settings-changes/settings-change.entity';
4
import { TransactionInfo } from './transaction-info.entity';
32✔
5

6
export class SettingsChangeTransaction extends TransactionInfo {
32✔
7
  @ApiProperty()
8
  dataDecoded: DataDecoded;
32✔
9
  @ApiPropertyOptional()
10
  settingsInfo: SettingsChange | null;
32✔
11

12
  constructor(
13
    dataDecoded: DataDecoded,
14
    settingsInfo: SettingsChange | null,
15
    humanDescription: string | null,
16
  ) {
NEW
17
    super('SettingsChange', humanDescription);
×
18
    this.dataDecoded = dataDecoded;
×
19
    this.settingsInfo = settingsInfo;
×
20
  }
21
}
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