@applitools/core 4.52.0 → 4.53.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,77 @@
1
1
  # Changelog
2
2
 
3
+ ## [4.53.0](https://github.com/Applitools-Dev/sdk/compare/js/core@4.52.0...js/core@4.53.0) (2025-11-19)
4
+
5
+
6
+ ### Features
7
+
8
+ * disable heartbeats whenever no tests are running ([#3344](https://github.com/Applitools-Dev/sdk/issues/3344)) ([b66d28a](https://github.com/Applitools-Dev/sdk/commit/b66d28a7a382f26b68de70c8633c027cb4bdf225))
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * better nml error messages ([#3311](https://github.com/Applitools-Dev/sdk/issues/3311)) ([3deea01](https://github.com/Applitools-Dev/sdk/commit/3deea0130636c44573adc919b95c1c99e6d194f1))
14
+ * fails to create test with coded dynamic region | AD-11074 ([#3361](https://github.com/Applitools-Dev/sdk/issues/3361)) ([7f8c8cd](https://github.com/Applitools-Dev/sdk/commit/7f8c8cd85c0cd2e5861cd33fbc29c465903258d5))
15
+ * resolved an issue with `matchTimeout` changing `retryTimeout` ([f656f59](https://github.com/Applitools-Dev/sdk/commit/f656f59dbfb7c41fdb569fbc56d2e9daecefb854))
16
+
17
+
18
+ ### Dependencies
19
+
20
+ * @applitools/utils bumped to 1.14.0
21
+ #### Features
22
+
23
+ * disable heartbeats whenever no tests are running ([#3344](https://github.com/Applitools-Dev/sdk/issues/3344)) ([b66d28a](https://github.com/Applitools-Dev/sdk/commit/b66d28a7a382f26b68de70c8633c027cb4bdf225))
24
+ * @applitools/nml-client bumped to 1.11.11
25
+ #### Bug Fixes
26
+
27
+ * better nml error messages ([#3311](https://github.com/Applitools-Dev/sdk/issues/3311)) ([3deea01](https://github.com/Applitools-Dev/sdk/commit/3deea0130636c44573adc919b95c1c99e6d194f1))
28
+
29
+
30
+
31
+ * @applitools/logger bumped to 2.2.6
32
+
33
+ * @applitools/dom-snapshot bumped to 4.15.1
34
+
35
+ * @applitools/socket bumped to 1.3.7
36
+
37
+ * @applitools/req bumped to 1.8.6
38
+
39
+ * @applitools/image bumped to 1.2.5
40
+
41
+ * @applitools/dom-capture bumped to 11.6.7
42
+
43
+ * @applitools/driver bumped to 1.24.2
44
+
45
+ * @applitools/spec-driver-webdriver bumped to 1.5.2
46
+
47
+ * @applitools/spec-driver-selenium bumped to 1.7.8
48
+
49
+ * @applitools/spec-driver-puppeteer bumped to 1.6.8
50
+
51
+ * @applitools/screenshoter bumped to 3.12.9
52
+
53
+ * @applitools/tunnel-client bumped to 1.11.4
54
+
55
+ * @applitools/ufg-client bumped to 1.18.2
56
+
57
+ * @applitools/core-base bumped to 1.30.0
58
+ #### Features
59
+
60
+ * disable heartbeats whenever no tests are running ([#3344](https://github.com/Applitools-Dev/sdk/issues/3344)) ([b66d28a](https://github.com/Applitools-Dev/sdk/commit/b66d28a7a382f26b68de70c8633c027cb4bdf225))
61
+
62
+
63
+ #### Bug Fixes
64
+
65
+ * fails to create test with coded dynamic region | AD-11074 ([#3361](https://github.com/Applitools-Dev/sdk/issues/3361)) ([7f8c8cd](https://github.com/Applitools-Dev/sdk/commit/7f8c8cd85c0cd2e5861cd33fbc29c465903258d5))
66
+ * resolved an issue with `matchTimeout` changing `retryTimeout` ([f656f59](https://github.com/Applitools-Dev/sdk/commit/f656f59dbfb7c41fdb569fbc56d2e9daecefb854))
67
+
68
+
69
+
70
+ * @applitools/ec-client bumped to 1.12.13
71
+
72
+ * @applitools/test-server bumped to 1.3.5
73
+
74
+
3
75
  ## [4.52.0](https://github.com/Applitools-Dev/sdk/compare/js/core@4.51.0...js/core@4.52.0) (2025-11-09)
4
76
 
5
77
 
package/dist/check.js CHANGED
@@ -56,7 +56,7 @@ function makeCheck({ type: defaultType = 'classic', eyes, target: defaultTarget,
56
56
  !utils.types.isEmpty(settings.accessibilitySettings));
57
57
  (_h = settings.autProxy) !== null && _h !== void 0 ? _h : (settings.autProxy = eyes.test.eyesServer.proxy);
58
58
  (_j = settings.useDom) !== null && _j !== void 0 ? _j : (settings.useDom = false);
59
- (_k = (_r = settings).retryTimeout) !== null && _k !== void 0 ? _k : (_r.retryTimeout = 0);
59
+ (_k = (_r = settings).matchTimeout) !== null && _k !== void 0 ? _k : (_r.matchTimeout = 0);
60
60
  settings.lazyLoad = settings.lazyLoad === true ? {} : settings.lazyLoad;
61
61
  if (settings.lazyLoad) {
62
62
  (_l = (_s = settings.lazyLoad).scrollLength) !== null && _l !== void 0 ? _l : (_s.scrollLength = defaults_1.DEFAULT_LAZY_LOAD.scrollLength);
@@ -55,16 +55,16 @@ function makeCheck({ eyes, target: defaultTarget, environments: defaultEnvironme
55
55
  let driver = undefined;
56
56
  if ((0, driver_1.isDriver)(target, spec)) {
57
57
  driver = await (0, driver_1.makeDriver)({ spec, driver: target, reset: target === defaultTarget, logger });
58
- if (settings.retryTimeout) {
59
- // when retry timeout is set, retry checking until it passes or timeout is reached. This will stall the client test execution until it passes or timeout is reached to prevent the test from continuing and changing the state of the app
60
- logger.log(`Retry timeout is set to ${settings.retryTimeout}ms - will retry checking until it passes or timeout is reached`);
58
+ if (settings.matchTimeout) {
59
+ // when match timeout is set, retry checking until it passes or timeout is reached. This will stall the client test execution until it passes or timeout is reached to prevent the test from continuing and changing the state of the app
60
+ logger.log(`Match timeout is set to ${settings.matchTimeout}ms - will retry checking until it passes or timeout is reached`);
61
61
  const start = Date.now();
62
62
  const environmentLogger = logger.extend({ tags: [`environment-${utils.general.shortid()}`] });
63
63
  // this getter actually open the eyes session if it's not already open
64
64
  const baseEyes = await Promise.all(uniqueEnvironments.map(environment => getBaseEyes({ environment, driver, logger: environmentLogger })));
65
65
  // if the test is new for any of the environments, we wait for the page to stabaliize before starting the checks. This should prevent us from creating a baseline with a loading spinner or something similar
66
66
  if (baseEyes.map(baseEye => baseEye.test.isNew).some(isNew => isNew)) {
67
- await new Promise(resolve => setTimeout(resolve, settings.retryTimeout));
67
+ await new Promise(resolve => setTimeout(resolve, settings.matchTimeout));
68
68
  }
69
69
  let asExpected = false, retries = 0;
70
70
  do {
@@ -93,12 +93,12 @@ function makeCheck({ eyes, target: defaultTarget, environments: defaultEnvironme
93
93
  putInStorage(exactEnvironment, eyes, Promise.resolve());
94
94
  });
95
95
  }
96
- } while (!asExpected && Date.now() - start < settings.retryTimeout);
96
+ } while (!asExpected && Date.now() - start < settings.matchTimeout);
97
97
  }
98
98
  else {
99
99
  // generate base targets (images to be compared) and settings for each environment
100
100
  const baseScreenshotsAndSettings = await generateBaseScreenshotsAndSettings(settings, uniqueEnvironments, eyes, logger, driver);
101
- // when no retry timeout is set, queue all environment checks against the server without stalling the client test execution
101
+ // when no match timeout is set, queue all environment checks against the server without stalling the client test execution
102
102
  baseScreenshotsAndSettings.forEach(({ exactEnvironment: environment, baseSetting, baseTarget }) => {
103
103
  checkInTheBackground(environment, baseTarget, baseSetting);
104
104
  });
@@ -339,8 +339,11 @@ async function runOfflineSnapshots(options) {
339
339
  logger: checkLogger,
340
340
  heartbeat: {
341
341
  processId: '',
342
- startPeriodicHeartbeatMessaging(settings) {
343
- logger.log('heartbeat is not used (offline)', settings);
342
+ acquire(settings) {
343
+ logger.log('acquire | heartbeat is not used (offline)', settings);
344
+ },
345
+ release() {
346
+ logger.log('release | heartbeat is not used (offline)');
344
347
  },
345
348
  },
346
349
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applitools/core",
3
- "version": "4.52.0",
3
+ "version": "4.53.0",
4
4
  "homepage": "https://applitools.com",
5
5
  "bugs": {
6
6
  "url": "https://github.com/applitools/eyes.sdk.javascript1/issues"
@@ -79,20 +79,20 @@
79
79
  }
80
80
  },
81
81
  "dependencies": {
82
- "@applitools/core-base": "1.29.0",
83
- "@applitools/dom-capture": "11.6.6",
84
- "@applitools/dom-snapshot": "4.15.0",
85
- "@applitools/driver": "1.24.1",
86
- "@applitools/ec-client": "1.12.12",
87
- "@applitools/logger": "2.2.5",
88
- "@applitools/nml-client": "1.11.10",
89
- "@applitools/req": "1.8.5",
90
- "@applitools/screenshoter": "3.12.8",
82
+ "@applitools/core-base": "1.30.0",
83
+ "@applitools/dom-capture": "11.6.7",
84
+ "@applitools/dom-snapshot": "4.15.1",
85
+ "@applitools/driver": "1.24.2",
86
+ "@applitools/ec-client": "1.12.13",
87
+ "@applitools/logger": "2.2.6",
88
+ "@applitools/nml-client": "1.11.11",
89
+ "@applitools/req": "1.8.6",
90
+ "@applitools/screenshoter": "3.12.9",
91
91
  "@applitools/snippets": "2.7.0",
92
- "@applitools/socket": "1.3.6",
93
- "@applitools/spec-driver-webdriver": "1.5.1",
94
- "@applitools/ufg-client": "1.18.1",
95
- "@applitools/utils": "1.13.0",
92
+ "@applitools/socket": "1.3.7",
93
+ "@applitools/spec-driver-webdriver": "1.5.2",
94
+ "@applitools/ufg-client": "1.18.2",
95
+ "@applitools/utils": "1.14.0",
96
96
  "@types/ws": "8.5.5",
97
97
  "abort-controller": "3.0.0",
98
98
  "chalk": "4.1.2",
@@ -106,11 +106,11 @@
106
106
  "devDependencies": {
107
107
  "@applitools/bongo": "^5.10.0",
108
108
  "@applitools/sea": "^1.0.0",
109
- "@applitools/spec-driver-puppeteer": "^1.6.7",
110
- "@applitools/spec-driver-selenium": "^1.7.7",
111
- "@applitools/test-server": "^1.3.4",
109
+ "@applitools/spec-driver-puppeteer": "^1.6.8",
110
+ "@applitools/spec-driver-selenium": "^1.7.8",
111
+ "@applitools/test-server": "^1.3.5",
112
112
  "@applitools/test-utils": "^1.5.17",
113
- "@applitools/tunnel-client": "^1.11.3",
113
+ "@applitools/tunnel-client": "^1.11.4",
114
114
  "@types/mocha": "^10.0.7",
115
115
  "@types/node": "^12.20.55",
116
116
  "@types/selenium-webdriver": "^4.1.2",
@@ -17,7 +17,7 @@ export declare function makeCheckAndClose<TSpec extends SpecType>({ eyes, target
17
17
  settings?: (BaseCheckSettings<utils.Region | import("@applitools/driver").ElementReference<TSpec>> & import("./types").ScreenshotSettings<TSpec> & {
18
18
  environments?: Environment[] | undefined;
19
19
  } & {
20
- retryTimeout?: number | undefined;
20
+ matchTimeout?: number | undefined;
21
21
  } & BaseCloseSettings & {
22
22
  environments?: Environment[] | undefined;
23
23
  }) | undefined;
@@ -30,5 +30,5 @@ export type OpenSettings = AutomationCore.OpenSettings & {
30
30
  keepPlatformNameAsIs?: boolean;
31
31
  };
32
32
  export type CheckSettings<TSpec extends SpecType> = AutomationCore.CheckSettings<TSpec> & {
33
- retryTimeout?: number;
33
+ matchTimeout?: number;
34
34
  };