@tramvai/test-integration 1.65.0 → 1.67.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.
@@ -2,6 +2,7 @@
2
2
  import { Writable } from 'stream';
3
3
  import type { PromiseType } from 'utility-types';
4
4
  import type { StartOptions } from './types';
5
+ export * from './utils';
5
6
  export interface StartCliOptions extends Omit<StartOptions, 'config' | 'target'> {
6
7
  enableRebuild?: boolean;
7
8
  }
package/lib/index.es.js CHANGED
@@ -117,4 +117,4 @@ const sleep = (ms) => {
117
117
  return new Promise((resolve) => setTimeout(resolve, ms).unref());
118
118
  };
119
119
 
120
- export { sleep, startCli };
120
+ export { getServerUrl, getStaticUrl, sleep, startCli };
package/lib/index.js CHANGED
@@ -126,5 +126,7 @@ const sleep = (ms) => {
126
126
  return new Promise((resolve) => setTimeout(resolve, ms).unref());
127
127
  };
128
128
 
129
+ exports.getServerUrl = getServerUrl;
130
+ exports.getStaticUrl = getStaticUrl;
129
131
  exports.sleep = sleep;
130
132
  exports.startCli = startCli;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tramvai/test-integration",
3
- "version": "1.65.0",
3
+ "version": "1.67.0",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "typings": "lib/index.d.ts",
@@ -22,7 +22,7 @@
22
22
  },
23
23
  "dependencies": {
24
24
  "@tinkoff/mocker": "1.5.5",
25
- "@tramvai/test-helpers": "1.65.0",
25
+ "@tramvai/test-helpers": "1.67.0",
26
26
  "@types/supertest": "^2.0.11",
27
27
  "supertest": "^6.1.3",
28
28
  "utility-types": "^3.10.0",
@@ -30,7 +30,7 @@
30
30
  },
31
31
  "peerDependencies": {
32
32
  "@tinkoff/utils": "^2.1.2",
33
- "@tramvai/cli": "1.65.0",
33
+ "@tramvai/cli": "1.67.0",
34
34
  "tslib": "^2.0.3"
35
35
  },
36
36
  "license": "Apache-2.0",