@zohodesk/testinglibrary 0.1.0-exp.5 → 0.1.0

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,26 +2,6 @@
2
2
 
3
3
  ## Framework that abstracts the configuration for playwright and Jest
4
4
 
5
- # 0.1.0-exp.5
6
-
7
- - playwright bersion change conflict
8
-
9
- # 0.1.0-exp.4
10
-
11
- - Playwright version error
12
-
13
- # 0.1.0-exp.3
14
-
15
- - Fixed error `@cucumber/gherkin` not found. Cause of this issue is updating @cucumber/cucumber to 9.5.0. Reverting this version to 9.2.0
16
-
17
- # 0.1.0-exp.2
18
-
19
- - Fixed post install script error
20
-
21
- # 0.1.0-exp.1
22
-
23
- - Package dependecies update. Playwright version update
24
-
25
5
  # 0.1.0
26
6
 
27
7
  - Removed eslint as dev dependencies as it causes `npm aliases not supported error` for npm version < 6
@@ -4,8 +4,8 @@ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefau
4
4
  var _path = _interopRequireDefault(require("path"));
5
5
  var _child_process = require("child_process");
6
6
  var _logger = require("../utils/logger");
7
- var _rootPath = require("../utils/rootPath");
8
- const playwrightPath = _path.default.resolve((0, _rootPath.getExecutableBinaryPath)('playwright'));
7
+ var _getFilePath = _interopRequireDefault(require("../utils/getFilePath"));
8
+ const playwrightPath = _path.default.resolve('node_modules', '.bin', (0, _getFilePath.default)('playwright'));
9
9
  const command = playwrightPath;
10
10
  const args = ['install'];
11
11
  _logger.Logger.log(_logger.Logger.INFO_TYPE, 'Downloading browsers for running tests');