@nestjs/testing 10.1.0 → 10.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/Readme.md CHANGED
@@ -85,7 +85,7 @@ Nest is an MIT-licensed open source project. It can grow thanks to the sponsors
85
85
 
86
86
  #### Silver Sponsors
87
87
 
88
- <table style="text-align:center;"><tr><td>
88
+ <table style="text-align:center;"><tr>
89
89
  <td><a href="https://n.inc" target="_blank"><img src="https://nestjs.com/img/n-inc-logo.svg" width="120" valign="middle" /></td></tr>
90
90
  </table>
91
91
 
@@ -1,4 +1,4 @@
1
- import { ModuleDefinition } from '../../core/interfaces/module-definition.interface';
1
+ import { ModuleDefinition } from '@nestjs/core/interfaces/module-definition.interface';
2
2
  import { TestingModuleBuilder } from '../testing-module.builder';
3
3
  /**
4
4
  * @publicApi
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nestjs/testing",
3
- "version": "10.1.0",
3
+ "version": "10.1.2",
4
4
  "description": "Nest - modern, fast, powerful node.js web framework (@testing)",
5
5
  "author": "Kamil Mysliwiec",
6
6
  "license": "MIT",
@@ -18,7 +18,7 @@
18
18
  "access": "public"
19
19
  },
20
20
  "dependencies": {
21
- "tslib": "2.6.0"
21
+ "tslib": "2.6.1"
22
22
  },
23
23
  "peerDependencies": {
24
24
  "@nestjs/common": "^10.0.0",
@@ -1,7 +1,7 @@
1
1
  import { LoggerService, ModuleMetadata } from '@nestjs/common';
2
2
  import { NestApplicationContextOptions } from '@nestjs/common/interfaces/nest-application-context-options.interface';
3
+ import { ModuleDefinition } from '@nestjs/core/interfaces/module-definition.interface';
3
4
  import { MetadataScanner } from '@nestjs/core/metadata-scanner';
4
- import { ModuleDefinition } from '../core/interfaces/module-definition.interface';
5
5
  import { MockFactory, OverrideBy } from './interfaces';
6
6
  import { OverrideModule } from './interfaces/override-module.interface';
7
7
  import { TestingModule } from './testing-module';