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

safe-global / safe-client-gateway / 11367049976

16 Oct 2024 01:47PM UTC coverage: 91.833% (+0.03%) from 91.806%
11367049976

Pull #2009

github

hectorgomezv
Fix test
Pull Request #2009: Init PostgresDatabaseModule on startup

2616 of 3176 branches covered (82.37%)

Branch coverage included in aggregate %.

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

8718 of 9166 relevant lines covered (95.11%)

433.62 hits per line

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

0.0
/src/datasources/transaction-api/transaction-api.module.ts
1
import { Module } from '@nestjs/common';
×
2
import { CacheFirstDataSourceModule } from '@/datasources/cache/cache.first.data.source.module';
×
3
import { HttpErrorFactory } from '@/datasources/errors/http-error-factory';
×
4
import { TransactionApiManager } from '@/datasources/transaction-api/transaction-api.manager';
×
5
import { ITransactionApiManager } from '@/domain/interfaces/transaction-api.manager.interface';
×
6
import { ConfigApiModule } from '@/datasources/config-api/config-api.module';
×
7

8
@Module({
9
  imports: [CacheFirstDataSourceModule, ConfigApiModule],
10
  providers: [
11
    HttpErrorFactory,
12
    { provide: ITransactionApiManager, useClass: TransactionApiManager },
13
  ],
14
  exports: [ITransactionApiManager],
15
})
16
export class TransactionApiModule {}
×
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