@applitools/eyes-cypress 3.23.0 → 3.23.4

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,26 @@
3
3
  ## Unreleased
4
4
 
5
5
 
6
+ ## 3.23.4 - 2021/12/9
7
+
8
+ - updated to @applitools/visual-grid-client@15.8.50 (from 15.8.49)
9
+
10
+ ## 3.23.3 - 2021/11/24
11
+
12
+ - add timeout before capturing dom snapshot
13
+ - updated to @applitools/dom-snapshot@4.5.11 (from 4.5.10)
14
+ - updated to @applitools/logger@1.0.6 (from 1.0.5)
15
+ - updated to @applitools/visual-grid-client@15.8.49 (from 15.8.46)
16
+
17
+ ## 3.23.2 - 2021/11/17
18
+
19
+ - updated to @applitools/visual-grid-client@15.8.46 (from 15.8.45)
20
+
21
+ ## 3.23.1 - 2021/11/15
22
+
23
+ - fix types for region inside shadow
24
+ - updated to @applitools/visual-grid-client@15.8.45 (from 15.8.44)
25
+
6
26
  ## 3.23.0 - 2021/11/11
7
27
 
8
28
  - support waitBeforeCapture
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applitools/eyes-cypress",
3
- "version": "3.23.0",
3
+ "version": "3.23.4",
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.44",
44
+ "@applitools/logger": "1.0.6",
45
+ "@applitools/visual-grid-client": "15.8.50",
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
  }