@applitools/core 2.4.11 → 2.4.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 CHANGED
@@ -2,6 +2,18 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## 2.4.13 - 2023/4/16
6
+
7
+ ### Features
8
+ ### Bug fixes
9
+ - format result `hostDisplaySize`
10
+
11
+ ## 2.4.12 - 2023/4/12
12
+
13
+ ### Features
14
+ ### Bug fixes
15
+ - Expose types for eyes-cypress
16
+
5
17
  ## 2.4.11 - 2023/4/11
6
18
 
7
19
  ### Features
@@ -73,7 +73,7 @@ function toHierarchicTAPString(results, { includeSubTests = true, markNewAsPasse
73
73
  ? currentResult.appUrls.session
74
74
  : "No URL (session didn't start).";
75
75
  tapString += `#\tTest url: ${url}\n`;
76
- tapString += `#\tBrowser: ${currentResult.hostApp}, Viewport: ${currentResult.hostDisplaySize}\n`;
76
+ tapString += `#\tBrowser: ${currentResult.hostApp}, Viewport: ${currentResult.hostDisplaySize.width}X${currentResult.hostDisplaySize.width}\n`;
77
77
  if (includeSubTests) {
78
78
  if (currentResult.stepsInfo && currentResult.stepsInfo.length > 0) {
79
79
  tapString += `\t1..${currentResult.stepsInfo.length}\n`;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applitools/core",
3
- "version": "2.4.11",
3
+ "version": "2.4.13",
4
4
  "homepage": "https://applitools.com",
5
5
  "bugs": {
6
6
  "url": "https://github.com/applitools/eyes.sdk.javascript1/issues"
package/types/types.d.ts CHANGED
@@ -6,7 +6,7 @@ import { type SpecType } from '@applitools/driver';
6
6
  import { type Logger } from '@applitools/logger';
7
7
  import { type Renderer } from '@applitools/ufg-client';
8
8
  import { type ECClient, type ECClientSettings } from '@applitools/ec-client';
9
- export { ECClient };
9
+ export { ECClient, Renderer };
10
10
  export * from './automation/types';
11
11
  export type TypedCore<TSpec extends SpecType, TType extends 'classic' | 'ufg'> = TType extends 'ufg' ? UFGCore.Core<TSpec> : ClassicCore.Core<TSpec>;
12
12
  export type TypedEyes<TSpec extends SpecType, TType extends 'classic' | 'ufg'> = TType extends 'ufg' ? UFGCore.Eyes<TSpec> : ClassicCore.Eyes<TSpec>;