@rsdk/testing 5.11.0 → 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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rsdk/testing",
|
|
3
|
-
"version": "5.
|
|
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": "
|
|
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
|
|