@applitools/eyes-browser 1.6.14 → 1.6.16
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 +107 -0
- package/dist/index.js +15029 -13527
- package/package.json +2 -2
- package/types/input/Configuration.d.ts +5 -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.16",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"applitools",
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
"test": "run playwright test"
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
|
-
"@applitools/eyes": "1.
|
|
54
|
+
"@applitools/eyes": "1.41.0"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
57
|
"@applitools/test-server": "1.4.3",
|
|
@@ -45,6 +45,7 @@ export type Configuration<TSpec extends Core.SpecType = Core.SpecType> = {
|
|
|
45
45
|
debugScreenshots?: DebugScreenshotProvider;
|
|
46
46
|
defaultMatchSettings?: ImageMatchSettings;
|
|
47
47
|
deviceInfo?: string;
|
|
48
|
+
bypassCSP?: boolean;
|
|
48
49
|
disableBrowserFetching?: boolean;
|
|
49
50
|
disableNMLUrlCache?: boolean;
|
|
50
51
|
displayName?: string;
|
|
@@ -251,6 +252,10 @@ export declare class ConfigurationData<TSpec extends Core.SpecType = Core.SpecTy
|
|
|
251
252
|
set deviceInfo(deviceInfo: string);
|
|
252
253
|
getDeviceInfo(): string;
|
|
253
254
|
setDeviceInfo(deviceInfo: string): this;
|
|
255
|
+
get bypassCSP(): boolean;
|
|
256
|
+
set bypassCSP(bypassCSP: boolean);
|
|
257
|
+
getBypassCSP(): boolean;
|
|
258
|
+
setBypassCSP(bypassCSP: boolean): this;
|
|
254
259
|
get disableBrowserFetching(): boolean;
|
|
255
260
|
set disableBrowserFetching(disableBrowserFetching: boolean);
|
|
256
261
|
getDisableBrowserFetching(): boolean;
|