@zohodesk/testinglibrary 0.0.9 → 0.1.0-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 +12 -0
- package/build/lib/post-install.js +2 -2
- package/npm-shrinkwrap.json +533 -1548
- package/package.json +25 -25
package/Changelog.md
CHANGED
|
@@ -2,6 +2,18 @@
|
|
|
2
2
|
|
|
3
3
|
## Framework that abstracts the configuration for playwright and Jest
|
|
4
4
|
|
|
5
|
+
# 0.1.0-exp.2
|
|
6
|
+
|
|
7
|
+
- Fixed post install script error
|
|
8
|
+
|
|
9
|
+
# 0.1.0-exp.1
|
|
10
|
+
|
|
11
|
+
- Package dependecies update. Playwright version update
|
|
12
|
+
|
|
13
|
+
# 0.1.0
|
|
14
|
+
|
|
15
|
+
- Removed eslint as dev dependencies as it causes `npm aliases not supported error` for npm version < 6
|
|
16
|
+
|
|
5
17
|
# 0.0.9
|
|
6
18
|
|
|
7
19
|
- Video sized in report adjusted to viewport size
|
|
@@ -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
|
|
8
|
-
const playwrightPath = _path.default.resolve(
|
|
7
|
+
var _rootPath = require("../utils/rootPath");
|
|
8
|
+
const playwrightPath = _path.default.resolve((0, _rootPath.getExecutableBinaryPath)('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');
|