@tramvai/test-unit 2.147.1 → 2.148.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/lib/app/createTestApp.d.ts +1 -1
- package/lib/app/testApp.d.ts +1 -1
- package/package.json +16 -16
|
@@ -18,6 +18,6 @@ type Options = Partial<Parameters<typeof createApp>[0]> & {
|
|
|
18
18
|
export declare const createTestApp: ({ name, bundles, providers, modules, actions, env, excludeDefaultModules, }?: Options) => Promise<{
|
|
19
19
|
app: import("@tramvai/core").App;
|
|
20
20
|
mocker: import("@tinkoff/mocker").Mocker | null;
|
|
21
|
-
close: () => import("http").Server<typeof import("http").IncomingMessage, typeof import("http").ServerResponse>;
|
|
21
|
+
close: () => import("node:http").Server<typeof import("node:http").IncomingMessage, typeof import("node:http").ServerResponse>;
|
|
22
22
|
}>;
|
|
23
23
|
export {};
|
package/lib/app/testApp.d.ts
CHANGED
|
@@ -24,6 +24,6 @@ export declare const testApp: (appOrAppPromise: App | Promise<App>) => Promise<{
|
|
|
24
24
|
application: string;
|
|
25
25
|
}>;
|
|
26
26
|
mocker: import("@tinkoff/mocker").Mocker | null;
|
|
27
|
-
close: () => import("http").Server<typeof import("http").IncomingMessage, typeof import("http").ServerResponse>;
|
|
27
|
+
close: () => import("node:http").Server<typeof import("node:http").IncomingMessage, typeof import("node:http").ServerResponse>;
|
|
28
28
|
}>;
|
|
29
29
|
export type TestAppResult = PromiseType<ReturnType<typeof testApp>>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tramvai/test-unit",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.148.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"typings": "lib/index.d.ts",
|
|
@@ -17,21 +17,21 @@
|
|
|
17
17
|
"watch": "tsc -w"
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@tramvai/cli": "2.
|
|
21
|
-
"@tramvai/core": "2.
|
|
22
|
-
"@tramvai/module-common": "2.
|
|
23
|
-
"@tramvai/module-log": "2.
|
|
24
|
-
"@tramvai/module-metrics": "2.
|
|
25
|
-
"@tramvai/module-mocker": "2.
|
|
26
|
-
"@tramvai/module-render": "2.
|
|
27
|
-
"@tramvai/module-router": "2.
|
|
28
|
-
"@tramvai/module-server": "2.
|
|
29
|
-
"@tramvai/state": "2.
|
|
30
|
-
"@tramvai/test-helpers": "2.
|
|
31
|
-
"@tramvai/test-mocks": "2.
|
|
32
|
-
"@tramvai/tokens-common": "2.
|
|
33
|
-
"@tramvai/tokens-server": "2.
|
|
34
|
-
"@tramvai/tokens-server-private": "2.
|
|
20
|
+
"@tramvai/cli": "2.148.0",
|
|
21
|
+
"@tramvai/core": "2.148.0",
|
|
22
|
+
"@tramvai/module-common": "2.148.0",
|
|
23
|
+
"@tramvai/module-log": "2.148.0",
|
|
24
|
+
"@tramvai/module-metrics": "2.148.0",
|
|
25
|
+
"@tramvai/module-mocker": "2.148.0",
|
|
26
|
+
"@tramvai/module-render": "2.148.0",
|
|
27
|
+
"@tramvai/module-router": "2.148.0",
|
|
28
|
+
"@tramvai/module-server": "2.148.0",
|
|
29
|
+
"@tramvai/state": "2.148.0",
|
|
30
|
+
"@tramvai/test-helpers": "2.148.0",
|
|
31
|
+
"@tramvai/test-mocks": "2.148.0",
|
|
32
|
+
"@tramvai/tokens-common": "2.148.0",
|
|
33
|
+
"@tramvai/tokens-server": "2.148.0",
|
|
34
|
+
"@tramvai/tokens-server-private": "2.148.0",
|
|
35
35
|
"utility-types": "^3.10.0"
|
|
36
36
|
},
|
|
37
37
|
"peerDependencies": {
|