@rsdk/testing 5.11.0-next.9 → 5.12.0-next.0

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/CHANGELOG.md CHANGED
@@ -3,6 +3,10 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [5.11.0](https://github.com/R-Vision/rsdk/compare/v5.11.0-next.10...v5.11.0) (2025-12-22)
7
+
8
+ **Note:** Version bump only for package @rsdk/testing
9
+
6
10
  ## [5.10.0](https://github.com/R-Vision/rsdk/compare/v5.10.0-next.2...v5.10.0) (2025-10-16)
7
11
 
8
12
  **Note:** Version bump only for package @rsdk/testing
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rsdk/testing",
3
- "version": "5.11.0-next.9",
3
+ "version": "5.12.0-next.0",
4
4
  "license": "Apache License 2.0",
5
5
  "main": "dist/index.js",
6
6
  "publishConfig": {
@@ -17,5 +17,5 @@
17
17
  "dependencies": {
18
18
  "get-port": "^5.1.1"
19
19
  },
20
- "gitHead": "eb042e3055f9ab6c64099ed246641cff1855272d"
20
+ "gitHead": "412cd0e0b03008a91b357e076024ee3c81586eb7"
21
21
  }
@@ -6,7 +6,7 @@ import type { PlatformContext } from '@rsdk/core';
6
6
  * В этом интерфейсе поля и методы которые мы позволяем использовать из оригинального TestingModule.
7
7
  * Делаем так, а не `implements Pick<...>` чтобы не писать портянки с объявлением всех полей
8
8
  */
9
- // eslint-disable-next-line @typescript-eslint/no-empty-interface,@typescript-eslint/no-unsafe-declaration-merging
9
+ // eslint-disable-next-line @typescript-eslint/no-empty-interface,@typescript-eslint/no-unsafe-declaration-merging,@typescript-eslint/no-empty-object-type
10
10
  export interface PlatformTestingModule
11
11
  extends Pick<TestingModule, 'resolve' | 'get' | 'close'> {}
12
12