@applitools/eyes-cypress 3.23.2 → 3.23.3

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
@@ -3,6 +3,13 @@
3
3
  ## Unreleased
4
4
 
5
5
 
6
+ ## 3.23.3 - 2021/11/24
7
+
8
+ - add timeout before capturing dom snapshot
9
+ - updated to @applitools/dom-snapshot@4.5.11 (from 4.5.10)
10
+ - updated to @applitools/logger@1.0.6 (from 1.0.5)
11
+ - updated to @applitools/visual-grid-client@15.8.49 (from 15.8.46)
12
+
6
13
  ## 3.23.2 - 2021/11/17
7
14
 
8
15
  - updated to @applitools/visual-grid-client@15.8.46 (from 15.8.45)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applitools/eyes-cypress",
3
- "version": "3.23.2",
3
+ "version": "3.23.3",
4
4
  "main": "index.js",
5
5
  "license": "SEE LICENSE IN LICENSE",
6
6
  "bin": {
@@ -39,10 +39,10 @@
39
39
  "directory": "packages/eyes-cypress"
40
40
  },
41
41
  "dependencies": {
42
- "@applitools/dom-snapshot": "4.5.10",
42
+ "@applitools/dom-snapshot": "4.5.11",
43
43
  "@applitools/functional-commons": "1.6.0",
44
- "@applitools/logger": "1.0.5",
45
- "@applitools/visual-grid-client": "15.8.46",
44
+ "@applitools/logger": "1.0.6",
45
+ "@applitools/visual-grid-client": "15.8.49",
46
46
  "body-parser": "1.19.0",
47
47
  "chalk": "3.0.0",
48
48
  "cors": "2.8.5",
@@ -29,7 +29,7 @@ function makeEyesCheckWindow({sendRequest, processPage, domSnapshotOptions, cypr
29
29
  return cypress
30
30
  .wrap({}, {log: false})
31
31
  .wait(waitBeforeCapture)
32
- .then(() => {
32
+ .then({log: false, timeout: 900000}, () => {
33
33
  return takeDomSnapshot(options);
34
34
  });
35
35
  }