@applitools/eyes 1.38.13 → 1.38.14
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 +30 -0
- package/dist/input/Configuration.js +19 -0
- package/package.json +2 -2
- package/types/input/Configuration.d.ts +10 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,35 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.38.14](https://github.com/Applitools-Dev/sdk/compare/js/eyes@1.38.13...js/eyes@1.38.14) (2026-04-13)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* protect page render target from pointing to html instead of cdt | FLD-4313 ([#3758](https://github.com/Applitools-Dev/sdk/issues/3758)) ([fd8008a](https://github.com/Applitools-Dev/sdk/commit/fd8008af0f6b491d3a3a9dce648bef1c18118b9b))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Dependencies
|
|
12
|
+
|
|
13
|
+
* @applitools/dom-snapshot bumped to 4.16.3
|
|
14
|
+
#### Bug Fixes
|
|
15
|
+
|
|
16
|
+
* protect page render target from pointing to html instead of cdt | FLD-4313 ([#3758](https://github.com/Applitools-Dev/sdk/issues/3758)) ([fd8008a](https://github.com/Applitools-Dev/sdk/commit/fd8008af0f6b491d3a3a9dce648bef1c18118b9b))
|
|
17
|
+
* @applitools/nml-client bumped to 1.11.23
|
|
18
|
+
#### Bug Fixes
|
|
19
|
+
|
|
20
|
+
* log nml responses | FLD-4433 ([#3757](https://github.com/Applitools-Dev/sdk/issues/3757)) ([70f0bcd](https://github.com/Applitools-Dev/sdk/commit/70f0bcdaa00b60f6fe8f2177b1713b92c8232c27))
|
|
21
|
+
* @applitools/ufg-client bumped to 1.20.2
|
|
22
|
+
#### Bug Fixes
|
|
23
|
+
|
|
24
|
+
* protect page render target from pointing to html instead of cdt | FLD-4313 ([#3758](https://github.com/Applitools-Dev/sdk/issues/3758)) ([fd8008a](https://github.com/Applitools-Dev/sdk/commit/fd8008af0f6b491d3a3a9dce648bef1c18118b9b))
|
|
25
|
+
* @applitools/core bumped to 4.59.2
|
|
26
|
+
#### Bug Fixes
|
|
27
|
+
|
|
28
|
+
* protect page render target from pointing to html instead of cdt | FLD-4313 ([#3758](https://github.com/Applitools-Dev/sdk/issues/3758)) ([fd8008a](https://github.com/Applitools-Dev/sdk/commit/fd8008af0f6b491d3a3a9dce648bef1c18118b9b))
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
3
33
|
## [1.38.13](https://github.com/Applitools-Dev/sdk/compare/js/eyes@1.38.12...js/eyes@1.38.13) (2026-04-06)
|
|
4
34
|
|
|
5
35
|
|
|
@@ -66,6 +66,24 @@ class ConfigurationData {
|
|
|
66
66
|
this[key] = value;
|
|
67
67
|
}
|
|
68
68
|
}
|
|
69
|
+
/** @internal */
|
|
70
|
+
get skipRootHtmlResource() {
|
|
71
|
+
return this._config.skipRootHtmlResource;
|
|
72
|
+
}
|
|
73
|
+
/** @internal */
|
|
74
|
+
set skipRootHtmlResource(skipRootHtmlResource) {
|
|
75
|
+
utils.guard.isBoolean(skipRootHtmlResource, { name: 'skipRootHtmlResource' });
|
|
76
|
+
this._config.skipRootHtmlResource = skipRootHtmlResource;
|
|
77
|
+
}
|
|
78
|
+
/** @internal */
|
|
79
|
+
getSkipRootHtmlResource() {
|
|
80
|
+
return this.skipRootHtmlResource;
|
|
81
|
+
}
|
|
82
|
+
/** @internal */
|
|
83
|
+
setSkipRootHtmlResource(skipRootHtmlResource) {
|
|
84
|
+
this.skipRootHtmlResource = skipRootHtmlResource;
|
|
85
|
+
return this;
|
|
86
|
+
}
|
|
69
87
|
get accessibilityValidation() {
|
|
70
88
|
return this.defaultMatchSettings.accessibilitySettings;
|
|
71
89
|
}
|
|
@@ -1246,6 +1264,7 @@ class ConfigurationData {
|
|
|
1246
1264
|
strictRegions: (_p = this.defaultMatchSettings) === null || _p === void 0 ? void 0 : _p.strictRegions,
|
|
1247
1265
|
floatingRegions: (_q = this.defaultMatchSettings) === null || _q === void 0 ? void 0 : _q.floatingRegions,
|
|
1248
1266
|
accessibilityRegions: (_r = this.defaultMatchSettings) === null || _r === void 0 ? void 0 : _r.accessibilityRegions,
|
|
1267
|
+
skipRootHtmlResource: this.skipRootHtmlResource,
|
|
1249
1268
|
}),
|
|
1250
1269
|
close: utils.general.removeUndefinedProps({
|
|
1251
1270
|
updateBaselineIfDifferent: this.saveFailedTests,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@applitools/eyes",
|
|
3
|
-
"version": "1.38.
|
|
3
|
+
"version": "1.38.14",
|
|
4
4
|
"keywords": [
|
|
5
5
|
"applitools",
|
|
6
6
|
"eyes",
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"test": "run --top-level mocha './test/**/*.spec.ts'"
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
|
-
"@applitools/core": "4.59.
|
|
53
|
+
"@applitools/core": "4.59.2",
|
|
54
54
|
"@applitools/logger": "2.2.10",
|
|
55
55
|
"@applitools/utils": "1.14.3",
|
|
56
56
|
"chalk": "4.1.2",
|
|
@@ -99,6 +99,8 @@ export type Configuration<TSpec extends Core.SpecType = Core.SpecType> = {
|
|
|
99
99
|
visualGridOptions?: Record<string, any>;
|
|
100
100
|
waitBeforeCapture?: number | (() => Promise<void>);
|
|
101
101
|
waitBeforeScreenshots?: number;
|
|
102
|
+
/** @internal */
|
|
103
|
+
skipRootHtmlResource?: boolean;
|
|
102
104
|
};
|
|
103
105
|
export declare class ConfigurationData<TSpec extends Core.SpecType = Core.SpecType> implements Required<Configuration<TSpec>> {
|
|
104
106
|
protected static readonly _spec: Core.SpecDriver<Core.SpecType>;
|
|
@@ -109,6 +111,14 @@ export declare class ConfigurationData<TSpec extends Core.SpecType = Core.SpecTy
|
|
|
109
111
|
constructor(config?: Configuration<TSpec>);
|
|
110
112
|
/** @internal */
|
|
111
113
|
constructor(config?: Configuration<TSpec>, spec?: Core.SpecDriver<TSpec>);
|
|
114
|
+
/** @internal */
|
|
115
|
+
get skipRootHtmlResource(): boolean;
|
|
116
|
+
/** @internal */
|
|
117
|
+
set skipRootHtmlResource(skipRootHtmlResource: boolean);
|
|
118
|
+
/** @internal */
|
|
119
|
+
getSkipRootHtmlResource(): boolean;
|
|
120
|
+
/** @internal */
|
|
121
|
+
setSkipRootHtmlResource(skipRootHtmlResource: boolean): this;
|
|
112
122
|
get accessibilityValidation(): AccessibilitySettings;
|
|
113
123
|
set accessibilityValidation(accessibilityValidation: AccessibilitySettings);
|
|
114
124
|
getAccessibilityValidation(): AccessibilitySettings;
|