@zohodesk/testinglibrary 0.0.8 → 0.0.9-exp.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
@@ -2,6 +2,11 @@
2
2
 
3
3
  ## Framework that abstracts the configuration for playwright and Jest
4
4
 
5
+ # 0.0.9
6
+
7
+ - Video sized in report adjusted to viewport size
8
+ - Changes in package.json scripts while setting up project
9
+
5
10
  # 0.0.8
6
11
 
7
12
  - Tags Support
@@ -53,8 +53,7 @@ function getPlaywrightConfig() {
53
53
  video: video ? {
54
54
  mode: 'on',
55
55
  size: {
56
- width: 640,
57
- height: 480
56
+ ...viewport
58
57
  }
59
58
  } : 'off'
60
59
  },
@@ -10,10 +10,9 @@ var _path = _interopRequireDefault(require("path"));
10
10
  var _logger = require("../utils/logger");
11
11
  function getScriptsToBeAdded() {
12
12
  return {
13
- "ua-test": "ZDTestingFramework test --mode=prod --headed",
14
- "ua-test-debug": "ZDTestingFramework test --mode=prod --debug",
15
- "ua-test-ci": "ZDTestingFramework test --mode=prod",
16
- "ua-report": "ZDTestingFramework report --port=9009",
13
+ "uat": "ZDTestingFramework test --mode=prod --headed",
14
+ "uat-debug": "ZDTestingFramework test --mode=prod --debug",
15
+ "uat-report": "ZDTestingFramework report --port=9009",
17
16
  "codegen": "ZDTestingFramework codegen deskclientapp.localzoho.com/agent"
18
17
  };
19
18
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zohodesk/testinglibrary",
3
- "version": "0.0.8",
3
+ "version": "0.0.9-exp.2",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "scripts": {