@applitools/eyes-storybook 3.29.2 → 3.29.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.29.3 - 2022/8/18
7
+
8
+ ### Features
9
+ ### Bug fixes
10
+ - Better support in DOM slot element
11
+ - fix error handling
12
+
6
13
  ## 3.29.2 - 2022/7/14
7
14
 
8
15
  ### Features
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applitools/eyes-storybook",
3
- "version": "3.29.2",
3
+ "version": "3.29.3",
4
4
  "description": "",
5
5
  "keywords": [
6
6
  "applitools",
@@ -70,15 +70,15 @@
70
70
  }
71
71
  },
72
72
  "dependencies": {
73
- "@applitools/driver": "1.9.15",
74
- "@applitools/eyes-sdk-core": "13.8.12",
73
+ "@applitools/driver": "1.9.21",
74
+ "@applitools/eyes-sdk-core": "13.8.22",
75
75
  "@applitools/functional-commons": "1.6.0",
76
- "@applitools/logger": "1.1.15",
76
+ "@applitools/logger": "1.1.16",
77
77
  "@applitools/monitoring-commons": "1.0.19",
78
- "@applitools/spec-driver-puppeteer": "1.1.6",
78
+ "@applitools/spec-driver-puppeteer": "1.1.8",
79
79
  "@applitools/test-server": "1.1.4",
80
80
  "@applitools/utils": "1.3.10",
81
- "@applitools/visual-grid-client": "15.13.6",
81
+ "@applitools/visual-grid-client": "15.13.16",
82
82
  "boxen": "4.2.0",
83
83
  "chalk": "3.0.0",
84
84
  "detect-port": "1.3.0",
@@ -28,10 +28,11 @@ function makeGetStoryData({logger, takeDomSnapshots, waitBeforeCapture, reloadPa
28
28
  logger.log(`[story data] done with page evaluate for story index: ${story.index}`);
29
29
  err && handleRenderStoryError(err);
30
30
  } catch (ex) {
31
- if (!ex.message.includes('Eyes could not render stories properly'))
31
+ if (ex.message && !ex.message.includes('Eyes could not render stories properly'))
32
32
  handleRenderStoryError(ex);
33
33
  else {
34
- throw ex;
34
+ const errMsg = ex.message || ex;
35
+ throw new Error(errMsg);
35
36
  }
36
37
  }
37
38
  } else {