@tramvai/test-integration 4.41.42 → 4.41.45

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,6 +51,11 @@ const startCli = async (targetOrConfig, { enableRebuild = false, env, logger = c
51
51
  transpilation: {
52
52
  loader: 'swc',
53
53
  },
54
+ // Playwright Inspector collects a stack trace for the ability to show in which file or step of the test a transition occurred
55
+ // internak stack trace utility uses process.cwd() to correctly calculate the path to the files
56
+ // @tramvai/cli when using threads loader does process.chdir(rootDir) because workers don't allow to change cwd
57
+ // this breaks stack traces, there are now broken paths to files, the inspector works incorrectly
58
+ serverRunner: 'process',
54
59
  },
55
60
  }, targetOrConfig),
56
61
  }),
@@ -60,6 +60,11 @@ const startCli = async (targetOrConfig, { enableRebuild = false, env, logger = c
60
60
  transpilation: {
61
61
  loader: 'swc',
62
62
  },
63
+ // Playwright Inspector collects a stack trace for the ability to show in which file or step of the test a transition occurred
64
+ // internak stack trace utility uses process.cwd() to correctly calculate the path to the files
65
+ // @tramvai/cli when using threads loader does process.chdir(rootDir) because workers don't allow to change cwd
66
+ // this breaks stack traces, there are now broken paths to files, the inspector works incorrectly
67
+ serverRunner: 'process',
63
68
  },
64
69
  }, targetOrConfig),
65
70
  }),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tramvai/test-integration",
3
- "version": "4.41.42",
3
+ "version": "4.41.45",
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": "4.0.4",
24
- "@tramvai/test-helpers": "4.41.42",
24
+ "@tramvai/test-helpers": "4.41.45",
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": "4.41.42",
31
+ "@tramvai/cli": "4.41.45",
32
32
  "tslib": "^2.4.0"
33
33
  },
34
34
  "license": "Apache-2.0",