@applitools/nml-client 1.3.28 → 1.3.29

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/dist/client.js CHANGED
@@ -82,6 +82,7 @@ async function takeSnapshots({ url, settings, logger, }) {
82
82
  UIKitRunTimeVersionNumber: metadata.UIKitRunTimeVersionNumber,
83
83
  }
84
84
  : undefined,
85
+ vhsType: platformName === 'android' ? 'android-x' : undefined,
85
86
  };
86
87
  });
87
88
  return Array(settings.renderers.length).fill(snapshot);
@@ -68,7 +68,12 @@ function handleLongRequests({ req }) {
68
68
  if (response.status === 200) {
69
69
  return req(request.url + '-response', {
70
70
  proxy: options.proxy,
71
- retry: { statuses: [404] },
71
+ retry: {
72
+ // 1500 attempts x 200 ms = 5 minutes
73
+ limit: 1500,
74
+ timeout: 200,
75
+ statuses: [404],
76
+ },
72
77
  });
73
78
  }
74
79
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applitools/nml-client",
3
- "version": "1.3.28",
3
+ "version": "1.3.29",
4
4
  "description": "Client to integrate the SDKs to the Native Mobile Library (NML)",
5
5
  "homepage": "https://applitools.com",
6
6
  "bugs": {
@@ -53,9 +53,9 @@
53
53
  "devDependencies": {
54
54
  "@applitools/bongo": "^2.2.2",
55
55
  "@applitools/scripts": "^1.2.0",
56
- "@applitools/spec-driver-selenium": "^1.5.24",
56
+ "@applitools/spec-driver-selenium": "^1.5.25",
57
57
  "@applitools/test-server": "^1.1.22",
58
- "@applitools/test-utils": "^1.5.9",
58
+ "@applitools/test-utils": "^1.5.10",
59
59
  "@types/mocha": "^9.1.1",
60
60
  "@types/node": "12",
61
61
  "@types/selenium-webdriver": "^4.1.2",