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

safe-global / safe-client-gateway / 11515358830

25 Oct 2024 09:12AM UTC coverage: 88.944% (-1.3%) from 90.269%
11515358830

push

github

hectorgomezv
Remove FF_EVENTS_QUEUE

2597 of 3278 branches covered (79.23%)

Branch coverage included in aggregate %.

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

87 existing lines in 12 files now uncovered.

8875 of 9620 relevant lines covered (92.26%)

397.5 hits per line

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

80.0
/src/datasources/push-notifications-api/__tests__/test.push-notifications-api.module.ts
1
import { Global, Module } from '@nestjs/common';
2✔
2
import { IPushNotificationsApi } from '@/domain/interfaces/push-notifications-api.interface';
2✔
3

4
const mockPushNotificationsApi: IPushNotificationsApi = {
2✔
5
  enqueueNotification: jest.fn(),
6
};
7

8
@Global()
9
@Module({
10
  providers: [
11
    {
12
      provide: IPushNotificationsApi,
13
      useFactory: (): jest.MockedObjectDeep<IPushNotificationsApi> => {
UNCOV
14
        return jest.mocked(mockPushNotificationsApi);
×
15
      },
16
    },
17
  ],
18
  exports: [IPushNotificationsApi],
19
})
20
export class TestPushNotificationsApiModule {}
2✔
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