@zohodesk/testinglibrary 0.0.5-exp.10 → 0.0.5-exp.12

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.
@@ -66,13 +66,13 @@ function createAuthenticationFile() {
66
66
  if ((0, _fs.existsSync)(isUATexist)) {
67
67
  _logger.Logger.log(_logger.Logger.INFO_TYPE, 'Creating Authentication File ....');
68
68
  try {
69
- (0, _fs.mkdirSync)(_path.default.resolve(process.cwd(), 'playwright'), {
69
+ (0, _fs.mkdirSync)(_path.default.resolve(process.cwd(), 'uat', 'playwright'), {
70
70
  recursive: true
71
71
  });
72
- (0, _fs.mkdirSync)(_path.default.resolve(process.cwd(), 'playwright', '.auth'), {
72
+ (0, _fs.mkdirSync)(_path.default.resolve(process.cwd(), 'uat', 'playwright', '.auth'), {
73
73
  recursive: true
74
74
  });
75
- const authFilePath = _path.default.resolve(process.cwd(), 'playwright', '.auth', 'user.json');
75
+ const authFilePath = _path.default.resolve(process.cwd(), 'uat', 'playwright', '.auth', 'user.json');
76
76
  (0, _fs.writeFileSync)(authFilePath, getSetupFileAsString('user-example.json'), null, 2);
77
77
  } catch (err) {
78
78
  _logger.Logger.log(_logger.Logger.FAILURE_TYPE, 'Something went wrong ! Folder not Created. Please re-initialize npm init-uat');
package/changelog.md CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  ## Framework that abstracts the configuration for playwright and Jest
4
4
 
5
+ # 0.0.5-exp.12
6
+
7
+ - Init command bug fix
8
+
5
9
  # 0.0.5-exp.10
6
10
 
7
11
  - tags support added
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zohodesk/testinglibrary",
3
- "version": "0.0.5-exp.10",
3
+ "version": "0.0.5-exp.12",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "scripts": {