@applitools/eyes-browser 1.6.10 → 1.6.12
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 +182 -0
- package/dist/index.js +612 -518
- package/package.json +3 -3
- package/types/input/Configuration.d.ts +10 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@applitools/eyes-browser",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.12",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"applitools",
|
|
@@ -51,10 +51,10 @@
|
|
|
51
51
|
"test": "run playwright test"
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
|
-
"@applitools/eyes": "1.38.
|
|
54
|
+
"@applitools/eyes": "1.38.15"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
|
-
"@applitools/test-server": "1.4.
|
|
57
|
+
"@applitools/test-server": "1.4.3",
|
|
58
58
|
"@playwright/test": "1.55.1",
|
|
59
59
|
"@types/node": "^12.20.55",
|
|
60
60
|
"@types/path-browserify": "^1.0.1",
|
|
@@ -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;
|