@applitools/eyes-storybook 3.31.0 → 3.31.1

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,12 @@
3
3
  ## Unreleased
4
4
 
5
5
 
6
+ ## 3.31.1 - 2023/2/21
7
+
8
+ ### Features
9
+ ### Bug fixes
10
+ - Make sure to send http headers in the main storybook tab
11
+
6
12
  ## 3.31.0 - 2023/2/15
7
13
 
8
14
  ### Features
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applitools/eyes-storybook",
3
- "version": "3.31.0",
3
+ "version": "3.31.1",
4
4
  "description": "",
5
5
  "keywords": [
6
6
  "applitools",
@@ -74,14 +74,14 @@
74
74
  }
75
75
  },
76
76
  "dependencies": {
77
- "@applitools/core": "2.3.1",
78
- "@applitools/driver": "1.11.30",
77
+ "@applitools/core": "2.3.6",
78
+ "@applitools/driver": "1.11.32",
79
79
  "@applitools/functional-commons": "1.6.0",
80
- "@applitools/logger": "1.1.45",
80
+ "@applitools/logger": "1.1.46",
81
81
  "@applitools/monitoring-commons": "1.0.19",
82
- "@applitools/spec-driver-puppeteer": "1.1.41",
83
- "@applitools/test-server": "1.1.25",
84
- "@applitools/ufg-client": "1.1.25",
82
+ "@applitools/spec-driver-puppeteer": "1.1.44",
83
+ "@applitools/test-server": "1.1.26",
84
+ "@applitools/ufg-client": "1.1.26",
85
85
  "@applitools/utils": "1.3.30",
86
86
  "boxen": "4.2.0",
87
87
  "chalk": "3.0.0",
@@ -61,6 +61,10 @@ async function eyesStorybook({
61
61
  const browser = await puppeteer.launch(config.puppeteerOptions);
62
62
  logger.log('browser launched');
63
63
  const page = await browser.newPage();
64
+ // we send http headers here and in init page
65
+ if (config.puppeteerExtraHTTPHeaders) {
66
+ await page.setExtraHTTPHeaders(config.puppeteerExtraHTTPHeaders);
67
+ }
64
68
  const core = await makeCore({
65
69
  spec,
66
70
  concurrency: testConcurrency,