@applitools/eyes-browser 1.6.11 → 1.6.13
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 +194 -0
- package/dist/index.js +560 -474
- package/package.json +3 -3
- package/types/input/Configuration.d.ts +15 -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.13",
|
|
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.
|
|
54
|
+
"@applitools/eyes": "1.39.0"
|
|
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",
|
|
@@ -63,6 +63,8 @@ export type Configuration<TSpec extends Core.SpecType = Core.SpecType> = {
|
|
|
63
63
|
hostAppInfo?: string;
|
|
64
64
|
hostOS?: string;
|
|
65
65
|
hostOSInfo?: string;
|
|
66
|
+
/** @internal */
|
|
67
|
+
httpVersion?: 1 | 2;
|
|
66
68
|
ignoreBaseline?: boolean;
|
|
67
69
|
ignoreCaret?: boolean;
|
|
68
70
|
ignoreDisplacements?: boolean;
|
|
@@ -70,6 +72,7 @@ export type Configuration<TSpec extends Core.SpecType = Core.SpecType> = {
|
|
|
70
72
|
isDisabled?: boolean;
|
|
71
73
|
layoutBreakpoints?: boolean | number[] | {
|
|
72
74
|
breakpoints: number[] | boolean;
|
|
75
|
+
heightBreakpoints?: boolean;
|
|
73
76
|
reload?: boolean;
|
|
74
77
|
};
|
|
75
78
|
matchLevel?: MatchLevel;
|
|
@@ -312,6 +315,14 @@ export declare class ConfigurationData<TSpec extends Core.SpecType = Core.SpecTy
|
|
|
312
315
|
set hostOSInfo(hostOSInfo: string);
|
|
313
316
|
getHostOSInfo(): string;
|
|
314
317
|
setHostOSInfo(hostOSInfo: string): this;
|
|
318
|
+
/** @internal */
|
|
319
|
+
get httpVersion(): 1 | 2;
|
|
320
|
+
/** @internal */
|
|
321
|
+
set httpVersion(httpVersion: 1 | 2);
|
|
322
|
+
/** @internal */
|
|
323
|
+
getHttpVersion(): 1 | 2;
|
|
324
|
+
/** @internal */
|
|
325
|
+
setHttpVersion(httpVersion: 1 | 2): this;
|
|
315
326
|
get ignoreBaseline(): boolean;
|
|
316
327
|
set ignoreBaseline(ignoreBaseline: boolean);
|
|
317
328
|
getIgnoreBaseline(): boolean;
|
|
@@ -334,18 +345,22 @@ export declare class ConfigurationData<TSpec extends Core.SpecType = Core.SpecTy
|
|
|
334
345
|
setIsDisabled(isDisabled: boolean): this;
|
|
335
346
|
get layoutBreakpoints(): boolean | number[] | {
|
|
336
347
|
breakpoints: number[] | boolean;
|
|
348
|
+
heightBreakpoints?: boolean;
|
|
337
349
|
reload?: boolean;
|
|
338
350
|
};
|
|
339
351
|
set layoutBreakpoints(layoutBreakpoints: boolean | number[] | {
|
|
340
352
|
breakpoints: number[] | boolean;
|
|
353
|
+
heightBreakpoints?: boolean;
|
|
341
354
|
reload?: boolean;
|
|
342
355
|
});
|
|
343
356
|
getLayoutBreakpoints(): boolean | number[] | {
|
|
344
357
|
breakpoints: number[] | boolean;
|
|
358
|
+
heightBreakpoints?: boolean;
|
|
345
359
|
reload?: boolean;
|
|
346
360
|
};
|
|
347
361
|
setLayoutBreakpoints(layoutBreakpoints: boolean | number[] | {
|
|
348
362
|
breakpoints: number[] | boolean;
|
|
363
|
+
heightBreakpoints?: boolean;
|
|
349
364
|
reload?: boolean;
|
|
350
365
|
}): this;
|
|
351
366
|
get matchLevel(): MatchLevel;
|