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

safe-global / safe-client-gateway / 8567901999

05 Apr 2024 09:45AM UTC coverage: 92.655% (-0.2%) from 92.863%
8567901999

push

github

web-flow
Remove DomainModule (#1367)

- The `DomainModule` was removed in favor of smaller domain modules.
- Each feature now should explicitly declare which section of the domain is required in their respective modules.
- This increases encapsulation of the provided features. For Dynamic Modules, it allows loading only the required components instead of the entire domain.

1882 of 2279 branches covered (82.58%)

Branch coverage included in aggregate %.

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

20 existing lines in 3 files now uncovered.

6608 of 6884 relevant lines covered (95.99%)

355.78 hits per line

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

0.0
/src/datasources/human-description-api/human-description-api.module.ts
UNCOV
1
import { Global, Module } from '@nestjs/common';
×
UNCOV
2
import { HumanDescriptionApi } from '@/datasources/human-description-api/human-description-api.service';
×
UNCOV
3
import { IHumanDescriptionApi } from '@/domain/interfaces/human-description-api.interface';
×
4

5
@Global()
6
@Module({
7
  providers: [{ provide: IHumanDescriptionApi, useClass: HumanDescriptionApi }],
8
  exports: [IHumanDescriptionApi],
9
})
UNCOV
10
export class HumanDescriptionApiModule {}
×
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