@applitools/eyes-testcafe 1.15.4 → 1.15.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 +6 -0
- package/dist/legacy.js +9 -2
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,12 @@
|
|
|
3
3
|
## Unreleased
|
|
4
4
|
|
|
5
5
|
|
|
6
|
+
## 1.15.5 - 2022/2/22
|
|
7
|
+
|
|
8
|
+
- add support for configuring notifyOnCompletion through an environment variable ([Trello](https://trello.com/c/WWdwQvpv))
|
|
9
|
+
- updated to @applitools/eyes-sdk-core@13.0.6 (from 13.0.5)
|
|
10
|
+
- updated to @applitools/visual-grid-client@15.9.0 (from 15.8.65)
|
|
11
|
+
|
|
6
12
|
## 1.15.4 - 2022/2/16
|
|
7
13
|
|
|
8
14
|
- fixing: Screenshotter dependency consuming 40+ MB of space
|
package/dist/legacy.js
CHANGED
|
@@ -85,8 +85,15 @@ function transformConfig(options) {
|
|
|
85
85
|
config.environmentName = options.envName;
|
|
86
86
|
if (options.browser)
|
|
87
87
|
config.browsersInfo = utils.types.isArray(options.browser) ? options.browser : [options.browser];
|
|
88
|
-
if (options.batchId ||
|
|
89
|
-
|
|
88
|
+
if (options.batchId ||
|
|
89
|
+
options.batchName ||
|
|
90
|
+
options.notifyOnCompletion ||
|
|
91
|
+
process.env.APPLITOOLS_NOTIFY_ON_COMPLETION) {
|
|
92
|
+
config.batch = {
|
|
93
|
+
id: options.batchId,
|
|
94
|
+
name: options.batchName,
|
|
95
|
+
notifyOnCompletion: options.notifyOnCompletion || !!process.env.APPLITOOLS_NOTIFY_ON_COMPLETION,
|
|
96
|
+
};
|
|
90
97
|
}
|
|
91
98
|
if (options.matchLevel || options.ignoreCaret || options.ignoreDisplacements || options.accessibilityValidation) {
|
|
92
99
|
config.defaultMatchSettings = {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@applitools/eyes-testcafe",
|
|
3
|
-
"version": "1.15.
|
|
3
|
+
"version": "1.15.5",
|
|
4
4
|
"description": "Applitools Eyes SDK for TestCafe",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"eyes-testcafe",
|
|
@@ -70,9 +70,9 @@
|
|
|
70
70
|
},
|
|
71
71
|
"dependencies": {
|
|
72
72
|
"@applitools/eyes-api": "1.1.8",
|
|
73
|
-
"@applitools/eyes-sdk-core": "13.0.
|
|
73
|
+
"@applitools/eyes-sdk-core": "13.0.6",
|
|
74
74
|
"@applitools/utils": "1.2.13",
|
|
75
|
-
"@applitools/visual-grid-client": "15.
|
|
75
|
+
"@applitools/visual-grid-client": "15.9.0"
|
|
76
76
|
},
|
|
77
77
|
"devDependencies": {
|
|
78
78
|
"@applitools/api-extractor": "1.2.7",
|