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

safe-global / safe-client-gateway / 11340871916

15 Oct 2024 06:58AM UTC coverage: 46.83% (-45.0%) from 91.836%
11340871916

push

github

web-flow
Bump typescript from 5.6.2 to 5.6.3 (#2015)

Bumps [typescript](https://github.com/microsoft/TypeScript) from 5.6.2 to 5.6.3.
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)
- [Commits](https://github.com/microsoft/TypeScript/compare/v5.6.2...v5.6.3)

---
updated-dependencies:
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

500 of 3096 branches covered (16.15%)

Branch coverage included in aggregate %.

5092 of 8845 relevant lines covered (57.57%)

12.16 hits per line

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

30.43
/src/logging/__tests__/test.logging.module.ts
1
import { Global, Inject, Module } from '@nestjs/common';
2✔
2
import { IConfigurationService } from '@/config/configuration.service.interface';
2✔
3
import { ILoggingService, LoggingService } from '@/logging/logging.interface';
2✔
4

5
class TestLoggingService implements ILoggingService {
2✔
6
  private readonly isSilent: boolean;
7

8
  constructor(
9
    @Inject(IConfigurationService)
10
    private readonly configurationService: IConfigurationService,
2✔
11
  ) {
12
    this.isSilent = configurationService.getOrThrow<boolean>('log.silent');
2✔
13
  }
14

15
  debug(message: unknown): void {
16
    if (this.isSilent) return;
×
17
    console.debug(message);
×
18
  }
19

20
  error(message: unknown): void {
21
    if (this.isSilent) return;
×
22
    console.error(message);
×
23
  }
24

25
  info(message: unknown): void {
26
    if (this.isSilent) return;
×
27
    console.info(message);
×
28
  }
29

30
  warn(message: unknown): void {
31
    if (this.isSilent) return;
×
32
    console.warn(message);
×
33
  }
34
}
35

36
@Global()
37
@Module({
38
  providers: [{ provide: LoggingService, useClass: TestLoggingService }],
39
  exports: [LoggingService],
40
})
41
export class TestLoggingModule {}
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