@applitools/eyes-cypress 3.32.0 → 3.32.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.
package/CHANGELOG.md CHANGED
@@ -12,6 +12,12 @@
12
12
 
13
13
 
14
14
 
15
+ ## 3.32.1 - 2023/4/24
16
+
17
+ ### Features
18
+ ### Bug fixes
19
+ - Fix fetchConcurrency mapping
20
+
15
21
  ## 3.32.0 - 2023/4/21
16
22
 
17
23
  ### Features
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applitools/eyes-cypress",
3
- "version": "3.32.0",
3
+ "version": "3.32.1",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git://github.com/applitools/eyes.sdk.javascript1.git",
@@ -132,9 +132,11 @@ Cypress.Commands.add('eyesOpen', function (args = {}) {
132
132
  manager =
133
133
  manager ||
134
134
  (await socket.request('Core.makeManager', {
135
- concurrency: Cypress.config('eyesTestConcurrency'),
135
+ settings: {
136
+ concurrency: Cypress.config('eyesTestConcurrency'),
137
+ fetchConcurrency: Cypress.config('appliConfFile').eyesFetchConcurrency,
138
+ },
136
139
  type: 'ufg',
137
- fetchConcurrency: Cypress.config('appliConfFile').eyesFetchConcurrency,
138
140
  }))
139
141
  }
140
142