@tramvai/test-integration 2.148.0 → 2.148.1

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.
@@ -51,8 +51,8 @@ export declare const startCli: (targetOrConfig: StartOptions['target'] | StartOp
51
51
  close: (() => Promise<void>) & (() => Promise<void>);
52
52
  invalidate: () => Promise<void>;
53
53
  getBuildStats: import("@tramvai/cli/lib/typings/build/Builder").GetBuildStats;
54
- staticServer?: import("node:http").Server<typeof import("node:http").IncomingMessage, typeof import("node:http").ServerResponse> | undefined;
55
- server?: import("node:http").Server<typeof import("node:http").IncomingMessage, typeof import("node:http").ServerResponse> | undefined;
54
+ staticServer?: import("http").Server<typeof import("http").IncomingMessage, typeof import("http").ServerResponse> | undefined;
55
+ server?: import("http").Server<typeof import("http").IncomingMessage, typeof import("http").ServerResponse> | undefined;
56
56
  builder: import("@tramvai/cli/lib/typings/build/Builder").Builder<any>;
57
57
  }>;
58
58
  export type StartCliResult = PromiseType<ReturnType<typeof startCli>>;
@@ -3,8 +3,8 @@ import type { StartCliOptions } from './startCli';
3
3
  export declare const runFakeApp: (config: Partial<StartOptions['config']>, options?: StartCliOptions) => Promise<{
4
4
  serverUrl: string;
5
5
  staticUrl: string;
6
- stdout: import("node:stream").Writable;
7
- stderr: import("node:stream").Writable;
6
+ stdout: import("stream").Writable;
7
+ stderr: import("stream").Writable;
8
8
  request: (path: string, { method, body, contentType, headers, }?: {
9
9
  method?: "get" | "post" | "put" | "delete" | undefined;
10
10
  body?: Record<string, any> | undefined;
@@ -45,7 +45,7 @@ export declare const runFakeApp: (config: Partial<StartOptions['config']>, optio
45
45
  close: (() => Promise<void>) & (() => Promise<void>);
46
46
  invalidate: () => Promise<void>;
47
47
  getBuildStats: import("@tramvai/cli/lib/typings/build/Builder").GetBuildStats;
48
- staticServer?: import("node:http").Server<typeof import("node:http").IncomingMessage, typeof import("node:http").ServerResponse> | undefined;
49
- server?: import("node:http").Server<typeof import("node:http").IncomingMessage, typeof import("node:http").ServerResponse> | undefined;
48
+ staticServer?: import("http").Server<typeof import("http").IncomingMessage, typeof import("http").ServerResponse> | undefined;
49
+ server?: import("http").Server<typeof import("http").IncomingMessage, typeof import("http").ServerResponse> | undefined;
50
50
  builder: import("@tramvai/cli/lib/typings/build/Builder").Builder<any>;
51
51
  }>;
@@ -2,8 +2,8 @@ import type { StartCliOptions } from './startCli';
2
2
  export declare const runRealApp: (tramvaiConfigRoot: string, appName: string, options: StartCliOptions) => Promise<{
3
3
  serverUrl: string;
4
4
  staticUrl: string;
5
- stdout: import("node:stream").Writable;
6
- stderr: import("node:stream").Writable;
5
+ stdout: import("stream").Writable;
6
+ stderr: import("stream").Writable;
7
7
  request: (path: string, { method, body, contentType, headers, }?: {
8
8
  method?: "get" | "post" | "put" | "delete" | undefined;
9
9
  body?: Record<string, any> | undefined;
@@ -44,7 +44,7 @@ export declare const runRealApp: (tramvaiConfigRoot: string, appName: string, op
44
44
  close: (() => Promise<void>) & (() => Promise<void>);
45
45
  invalidate: () => Promise<void>;
46
46
  getBuildStats: import("@tramvai/cli/lib/typings/build/Builder").GetBuildStats;
47
- staticServer?: import("node:http").Server<typeof import("node:http").IncomingMessage, typeof import("node:http").ServerResponse> | undefined;
48
- server?: import("node:http").Server<typeof import("node:http").IncomingMessage, typeof import("node:http").ServerResponse> | undefined;
47
+ staticServer?: import("http").Server<typeof import("http").IncomingMessage, typeof import("http").ServerResponse> | undefined;
48
+ server?: import("http").Server<typeof import("http").IncomingMessage, typeof import("http").ServerResponse> | undefined;
49
49
  builder: import("@tramvai/cli/lib/typings/build/Builder").Builder<any>;
50
50
  }>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tramvai/test-integration",
3
- "version": "2.148.0",
3
+ "version": "2.148.1",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "typings": "lib/index.d.ts",
@@ -21,14 +21,14 @@
21
21
  },
22
22
  "dependencies": {
23
23
  "@tinkoff/mocker": "2.1.6",
24
- "@tramvai/test-helpers": "2.148.0",
24
+ "@tramvai/test-helpers": "2.148.1",
25
25
  "env-ci": "^5.0.2",
26
26
  "utility-types": "^3.10.0",
27
27
  "wait-on": "^5.3.0"
28
28
  },
29
29
  "peerDependencies": {
30
30
  "@tinkoff/utils": "^2.1.2",
31
- "@tramvai/cli": "2.148.0",
31
+ "@tramvai/cli": "2.148.1",
32
32
  "tslib": "^2.4.0"
33
33
  },
34
34
  "license": "Apache-2.0",