@applitools/eyes-testcafe 1.16.1 → 1.16.2

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 CHANGED
@@ -10,6 +10,16 @@
10
10
 
11
11
 
12
12
 
13
+
14
+ ## 1.16.2 - 2022/5/27
15
+
16
+ ### Features
17
+ ### Bug fixes
18
+ - Fixed `CheckSetting`'s `fully` being overridden by `Configuration`'s `forceFullPageScreenshot`
19
+ - Set EyesExceptions (such as new test, diffs exception and failed test exception) to exception property in TestResultsSummary
20
+ - Returned support of `showLogs` in configuration file and object
21
+ - Improve error message when failed to set viewport size
22
+
13
23
  ## 1.16.1 - 2022/5/19
14
24
 
15
25
  ### Features
package/dist/legacy.js CHANGED
@@ -112,6 +112,8 @@ function transformConfig(options) {
112
112
  }
113
113
  if (utils.types.isString(options.proxy))
114
114
  config.proxy = { url: options.proxy };
115
+ if (options.showLogs)
116
+ config.logs = { type: 'console' };
115
117
  return config;
116
118
  }
117
119
  exports.transformConfig = transformConfig;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applitools/eyes-testcafe",
3
- "version": "1.16.1",
3
+ "version": "1.16.2",
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.4.1",
73
- "@applitools/eyes-sdk-core": "13.6.16",
73
+ "@applitools/eyes-sdk-core": "13.6.23",
74
74
  "@applitools/utils": "1.3.0",
75
- "@applitools/visual-grid-client": "15.12.28"
75
+ "@applitools/visual-grid-client": "15.12.35"
76
76
  },
77
77
  "devDependencies": {
78
78
  "@applitools/api-extractor": "1.2.7",
@@ -80,7 +80,7 @@
80
80
  "@applitools/scripts": "1.1.0",
81
81
  "@applitools/sdk-coverage-tests": "^2.3.18",
82
82
  "@applitools/sdk-shared": "0.9.11",
83
- "@applitools/test-server": "1.0.8",
83
+ "@applitools/test-server": "1.0.9",
84
84
  "@applitools/test-utils": "1.3.2",
85
85
  "@types/yargs": "^17.0.10",
86
86
  "@typescript-eslint/eslint-plugin": "^4.15.1",
package/types/index.d.ts CHANGED
@@ -607,6 +607,7 @@ export type TestCafeConfiguration = {
607
607
  concurrency?: number;
608
608
  failTestcafeOnDiff?: boolean;
609
609
  tapDirPath?: string;
610
+ showLogs?: boolean;
610
611
  };
611
612
  export type TestCafeCheckSettings = {
612
613
  tag?: string;