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

safe-global / safe-client-gateway / 8187602344

07 Mar 2024 11:48AM UTC coverage: 93.198% (-0.3%) from 93.452%
8187602344

Pull #1264

github

iamacook
Add test
Pull Request #1264: Migrate `CreateMessageDto` to `zod`

1727 of 2095 branches covered (82.43%)

Branch coverage included in aggregate %.

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

13 existing lines in 4 files now uncovered.

6398 of 6623 relevant lines covered (96.6%)

345.11 hits per line

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

33.33
/src/datasources/locking-api/locking-api.service.ts
1
import { Page } from '@/domain/entities/page.entity';
2
import { ILockingApi } from '@/domain/interfaces/locking-api.interface';
3
import { LockingEvent } from '@/domain/locking/entities/locking-event.entity';
4
import { Rank } from '@/domain/locking/entities/rank.entity';
5

6
export class LockingApi implements ILockingApi {
82✔
7
  // eslint-disable-next-line @typescript-eslint/no-unused-vars
8
  async getLeaderboard(args: {
9
    safeAddress?: string;
10
    limit?: number;
11
    offset?: number;
12
  }): Promise<Page<Rank>> {
UNCOV
13
    throw new Error('Method not implemented.');
×
14
  }
15

16
  // eslint-disable-next-line @typescript-eslint/no-unused-vars
17
  async getLockingHistory(args: {
18
    safeAddress?: string;
19
    limit?: number;
20
    offset?: number;
21
  }): Promise<Page<LockingEvent>> {
UNCOV
22
    throw new Error('Method not implemented.');
×
23
  }
24
}
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