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

safe-global / safe-client-gateway / 22575363049

02 Mar 2026 12:09PM UTC coverage: 56.52% (-32.9%) from 89.388%
22575363049

push

github

web-flow
build(deps): bump @nestjs/swagger from 11.2.0 to 11.2.6 (#2957)

Bumps [@nestjs/swagger](https://github.com/nestjs/swagger) from 11.2.0 to 11.2.6.
- [Release notes](https://github.com/nestjs/swagger/releases)
- [Commits](https://github.com/nestjs/swagger/compare/11.2.0...11.2.6)

---
updated-dependencies:
- dependency-name: "@nestjs/swagger"
  dependency-version: 11.2.6
  dependency-type: direct:production
  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>

1979 of 3720 branches covered (53.2%)

Branch coverage included in aggregate %.

8406 of 14654 relevant lines covered (57.36%)

132.06 hits per line

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

0.0
/src/datasources/cache/__tests__/test.cache.module.ts
1
import { Global, Module } from '@nestjs/common';
×
2
import { FakeCacheService } from '@/datasources/cache/__tests__/fake.cache.service';
×
3
import { CacheReadiness } from '@/domain/interfaces/cache-readiness.interface';
×
4
import { CacheService } from '@/datasources/cache/cache.service.interface';
×
5

6
/**
7
 * The {@link TestCacheModule} should be used whenever you want to
8
 * override the values provided by the {@link CacheService}
9
 *
10
 * Example:
11
 * Test.createTestingModule({ imports: [ModuleA, TestCacheModule]}).compile();
12
 *
13
 * This will create a TestModule which uses the implementation of ModuleA but
14
 * overrides the real Cache Module with a fake one – {@link FakeCacheService}
15
 */
16
@Global()
17
@Module({
18
  providers: [
19
    { provide: CacheService, useClass: FakeCacheService },
20
    {
21
      provide: CacheReadiness,
22
      useExisting: CacheService,
23
    },
24
  ],
25
  exports: [CacheService, CacheReadiness],
26
})
27
export class TestCacheModule {}
×
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