@tramvai/cli 4.41.2 → 4.41.4

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": "@tramvai/cli",
3
- "version": "4.41.2",
3
+ "version": "4.41.4",
4
4
  "description": "Cli инструмент для сборки и запуска приложений",
5
5
  "files": [
6
6
  "src",
@@ -64,7 +64,7 @@
64
64
  "@tinkoff/browserslist-config": "0.4.2",
65
65
  "@tinkoff/dippy": "0.10.8",
66
66
  "@tinkoff/is-modern-lib": "4.0.1",
67
- "@tinkoff/logger": "0.10.279",
67
+ "@tinkoff/logger": "0.10.280",
68
68
  "@tinkoff/minicss-class-generator": "0.4.1",
69
69
  "@tinkoff/package-manager-wrapper": "0.3.1",
70
70
  "@tinkoff/request-core": "^0.10.0",
@@ -73,9 +73,9 @@
73
73
  "@tinkoff/utils": "^2.1.3",
74
74
  "@tinkoff/webpack-dedupe-plugin": "3.0.1",
75
75
  "@tramvai/build": "5.0.3",
76
- "@tramvai/react": "4.41.2",
77
- "@tramvai/tools-check-versions": "0.6.7",
78
- "@tramvai/tools-migrate": "0.8.7",
76
+ "@tramvai/react": "4.41.4",
77
+ "@tramvai/tools-check-versions": "0.6.8",
78
+ "@tramvai/tools-migrate": "0.8.8",
79
79
  "ajv": "^8.12.0",
80
80
  "ansi-escapes": "^4.3.2",
81
81
  "autoprefixer": "^10.4.8",
@@ -6,10 +6,6 @@ Error.stackTraceLimit = Infinity;
6
6
  const PORT = Number(process.env.PORT) || 3000;
7
7
  const BASE_URL = `http://localhost:${PORT}`;
8
8
 
9
- const command = 'npm start';
10
- const timeout = 60 * 1000;
11
- const workers = 1;
12
-
13
9
  const projects: PlaywrightTestConfig['projects'] = [
14
10
  {
15
11
  name: 'chromium',
@@ -19,25 +15,24 @@ const projects: PlaywrightTestConfig['projects'] = [
19
15
 
20
16
  const config: PlaywrightTestConfig = {
21
17
  testMatch: '__integration__/**/*.test.ts',
22
- expect: {
23
- timeout: 1000,
24
- },
18
+ reporter: [
19
+ ['list'],
20
+ ['html', { open: 'never' }],
21
+ ],
25
22
  use: {
26
23
  testIdAttribute: 'data-qa-type',
27
24
  headless: true,
28
25
  video: 'retain-on-failure',
29
26
  screenshot: 'only-on-failure',
30
27
  baseURL: BASE_URL,
31
- navigationTimeout: 10000,
32
28
  trace: 'retain-on-failure',
33
29
  },
34
30
  webServer: {
35
- command,
36
- port: PORT,
37
- timeout,
31
+ command: 'npm run start',
32
+ url: BASE_URL,
33
+ reuseExistingServer: !process.env.CI,
38
34
  },
39
35
  projects,
40
- workers,
41
36
  };
42
37
 
43
38
  export default config;