@applitools/eyes-cypress 3.27.3 → 3.27.5
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 +12 -0
- package/package.json +3 -3
- package/src/browser/eyesOpenMapping.js +4 -2
package/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,18 @@
|
|
|
10
10
|
|
|
11
11
|
|
|
12
12
|
|
|
13
|
+
## 3.27.5 - 2022/10/20
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
### Bug fixes
|
|
17
|
+
- Fix dontCloseBatches mapping
|
|
18
|
+
|
|
19
|
+
## 3.27.4 - 2022/10/19
|
|
20
|
+
|
|
21
|
+
### Features
|
|
22
|
+
### Bug fixes
|
|
23
|
+
- Fix support for chrome emulation when passing browser name
|
|
24
|
+
|
|
13
25
|
## 3.27.3 - 2022/10/19
|
|
14
26
|
|
|
15
27
|
### Features
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@applitools/eyes-cypress",
|
|
3
|
-
"version": "3.27.
|
|
3
|
+
"version": "3.27.5",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git://github.com/applitools/eyes.sdk.javascript1.git",
|
|
@@ -55,9 +55,9 @@
|
|
|
55
55
|
}
|
|
56
56
|
},
|
|
57
57
|
"dependencies": {
|
|
58
|
-
"@applitools/core": "1.2.
|
|
58
|
+
"@applitools/core": "1.2.1",
|
|
59
59
|
"@applitools/eyes-api": "1.9.0",
|
|
60
|
-
"@applitools/eyes-universal": "2.16.
|
|
60
|
+
"@applitools/eyes-universal": "2.16.6",
|
|
61
61
|
"@applitools/functional-commons": "1.6.0",
|
|
62
62
|
"@applitools/logger": "1.1.27",
|
|
63
63
|
"chalk": "3.0.0",
|
|
@@ -89,8 +89,10 @@ function eyesOpenMapValues({args, appliConfFile, testName, shouldUseBrowserHooks
|
|
|
89
89
|
}
|
|
90
90
|
|
|
91
91
|
function fillDefaultBrowserName(browser) {
|
|
92
|
-
if (!browser.
|
|
93
|
-
browser.name
|
|
92
|
+
if (!browser.iosDeviceInfo && !browser.chromeEmulationInfo) {
|
|
93
|
+
if (!browser.name) {
|
|
94
|
+
browser.name = 'chrome';
|
|
95
|
+
}
|
|
94
96
|
if (browser.deviceName) {
|
|
95
97
|
browser = {chromeEmulationInfo: browser};
|
|
96
98
|
}
|