@zohodesk/testinglibrary 3.2.18 → 3.2.19

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/README.md CHANGED
@@ -17,18 +17,8 @@
17
17
 
18
18
  - npm run report
19
19
 
20
- ### v4.0.0 - 04-12-2025
21
-
22
- #### Features
23
- - Supported node 20 for the testing-framework
24
-
25
- - Below package versions are updated in this release.
26
- - playwright - 1.56.1,
27
- - playwright-bdd - 8.4.2,
28
- - @playwright/test - 1.56.1,
29
- - @cucumber/cucumber - 12.2.0
30
20
 
31
- ### v3.2.18 - 09-12-2025
21
+ ### v3.2.19 - 17-12-2025
32
22
 
33
23
  #### Enhancement
34
24
  - Cookie storage prefix support is provided in this version.
@@ -41,8 +41,7 @@ async function executeDefaultLoginSteps(context, testInfo, testDetails, testPort
41
41
  }
42
42
  try {
43
43
  const projectName = testInfo.project.name;
44
- const authFileName = process.env.authFileName;
45
- testDetails.authFilePrefix = authFileName;
44
+ testDetails.authFilePrefix = process.env.authFilePrefix;
46
45
  if (testPortalDetails && projectName !== 'setup' && projectName !== 'cleanup') {
47
46
  await context.clearCookies();
48
47
  await (0, _auth.performLoginSteps)(testDetails, async testInfo => {
@@ -19,16 +19,14 @@ async function performLoginSteps(testInfo, isLoggedIn, loginSteps) {
19
19
  email
20
20
  } = testInfo;
21
21
  let authFileName;
22
- if (!authFilePrefix) {
23
- authFileName = email;
24
- } else if (authFilePrefix.includes(email)) {
25
- authFileName = authFilePrefix;
22
+ if (authFilePrefix) {
23
+ authFileName = `${authFilePrefix}-${email}`;
24
+ process.env.authFilePrefix = authFilePrefix;
26
25
  } else {
27
- authFileName = authFilePrefix + email;
26
+ authFileName = `${email}`;
28
27
  }
29
- process.env.authFileName = authFileName;
30
28
  const authFile = _path.default.resolve(_path.default.join((0, _checkAuthCookies.getAuthFileDirectory)(), `${authFileName}-cookies.json`));
31
- const lockFileName = authFileName.replace(/[@.]/g, '_');
29
+ const lockFileName = `${authFileName}`.replace(/[@.]/g, '_');
32
30
  const fileMutex = new _fileMutex.default((0, _checkAuthDirectory.getLockDirectoryPath)(), lockFileName, _fileMutexConfig.fileDeletionTimeoutConfig);
33
31
  let loginUsingCookie = false;
34
32
  try {
@@ -16,9 +16,14 @@ var _mergeObjects = require("./helpers/mergeObjects");
16
16
  var _Configuration = _interopRequireDefault(require("./configuration/Configuration"));
17
17
  var _UserArgs = _interopRequireDefault(require("./configuration/UserArgs"));
18
18
  var _ConfigurationHelper = require("./configuration/ConfigurationHelper");
19
+ var _auth = require("./helpers/auth");
19
20
  let cachedConfig = null;
20
21
  function getPrimaryCookiePath() {
21
- const authFileName = process.env.authFileName;
22
+ const {
23
+ email
24
+ } = (0, _auth.getDefaultActor)();
25
+ const authFilePrefix = process.env.authFilePrefix;
26
+ let authFileName = authFilePrefix ? `${authFilePrefix}-${email}` : `${email}`;
22
27
  return `uat/playwright/.auth/${authFileName}-cookies.json`;
23
28
  }
24
29
  function getDefaultConfig() {
package/build/index.d.ts CHANGED
@@ -3,7 +3,6 @@ import {
3
3
  test,
4
4
  createBdd
5
5
  } from './core/playwright/index';
6
- import { fireEvent, render } from '@testing-library/react';
7
6
  import {
8
7
  PlaywrightTestArgs,
9
8
  PlaywrightTestOptions,
package/build/index.js CHANGED
@@ -89,8 +89,6 @@ Object.defineProperty(exports, "verifyIfCookieFileExists", {
89
89
  }
90
90
  });
91
91
  var _index = require("./core/playwright/index");
92
- // import { fireEvent, render } from '@testing-library/react';
93
-
94
92
  const {
95
93
  Given,
96
94
  Then,
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@zohodesk/testinglibrary",
3
- "version": "3.2.18",
3
+ "version": "3.2.19",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "@zohodesk/testinglibrary",
9
- "version": "3.2.18",
9
+ "version": "3.2.19",
10
10
  "hasInstallScript": true,
11
11
  "license": "ISC",
12
12
  "dependencies": {
@@ -16,8 +16,6 @@
16
16
  "@playwright/test": "1.53.2",
17
17
  "@reportportal/agent-js-playwright": "5.1.11",
18
18
  "@testing-library/jest-dom": "5.11.9",
19
- "@testing-library/react": "11.2.7",
20
- "@testing-library/react-hooks": "7.0.2",
21
19
  "babel-jest": "29.6.2",
22
20
  "babel-plugin-transform-dynamic-import": "2.1.0",
23
21
  "fast-glob": "3.3.1",
@@ -102,6 +100,13 @@
102
100
  "node": ">= 6"
103
101
  }
104
102
  },
103
+ "node_modules/@babel/cli/node_modules/convert-source-map": {
104
+ "version": "1.9.0",
105
+ "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz",
106
+ "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==",
107
+ "dev": true,
108
+ "license": "MIT"
109
+ },
105
110
  "node_modules/@babel/code-frame": {
106
111
  "version": "7.27.1",
107
112
  "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.27.1.tgz",
@@ -155,6 +160,12 @@
155
160
  "url": "https://opencollective.com/babel"
156
161
  }
157
162
  },
163
+ "node_modules/@babel/core/node_modules/convert-source-map": {
164
+ "version": "1.9.0",
165
+ "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz",
166
+ "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==",
167
+ "license": "MIT"
168
+ },
158
169
  "node_modules/@babel/generator": {
159
170
  "version": "7.28.5",
160
171
  "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.28.5.tgz",
@@ -3332,12 +3343,6 @@
3332
3343
  "url": "https://github.com/chalk/ansi-styles?sponsor=1"
3333
3344
  }
3334
3345
  },
3335
- "node_modules/@jest/reporters/node_modules/convert-source-map": {
3336
- "version": "2.0.0",
3337
- "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz",
3338
- "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==",
3339
- "license": "MIT"
3340
- },
3341
3346
  "node_modules/@jest/reporters/node_modules/istanbul-lib-instrument": {
3342
3347
  "version": "6.0.3",
3343
3348
  "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.3.tgz",
@@ -3506,12 +3511,6 @@
3506
3511
  "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
3507
3512
  }
3508
3513
  },
3509
- "node_modules/@jest/transform/node_modules/convert-source-map": {
3510
- "version": "2.0.0",
3511
- "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz",
3512
- "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==",
3513
- "license": "MIT"
3514
- },
3515
3514
  "node_modules/@jest/transform/node_modules/slash": {
3516
3515
  "version": "3.0.0",
3517
3516
  "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
@@ -3809,25 +3808,6 @@
3809
3808
  "node": ">=14"
3810
3809
  }
3811
3810
  },
3812
- "node_modules/@testing-library/dom": {
3813
- "version": "7.31.2",
3814
- "resolved": "https://registry.npmjs.org/@testing-library/dom/-/dom-7.31.2.tgz",
3815
- "integrity": "sha512-3UqjCpey6HiTZT92vODYLPxTBWlM8ZOOjr3LX5F37/VRipW2M1kX6I/Cm4VXzteZqfGfagg8yXywpcOgQBlNsQ==",
3816
- "license": "MIT",
3817
- "dependencies": {
3818
- "@babel/code-frame": "^7.10.4",
3819
- "@babel/runtime": "^7.12.5",
3820
- "@types/aria-query": "^4.2.0",
3821
- "aria-query": "^4.2.2",
3822
- "chalk": "^4.1.0",
3823
- "dom-accessibility-api": "^0.5.6",
3824
- "lz-string": "^1.4.4",
3825
- "pretty-format": "^26.6.2"
3826
- },
3827
- "engines": {
3828
- "node": ">=10"
3829
- }
3830
- },
3831
3811
  "node_modules/@testing-library/jest-dom": {
3832
3812
  "version": "5.11.9",
3833
3813
  "resolved": "https://registry.npmjs.org/@testing-library/jest-dom/-/jest-dom-5.11.9.tgz",
@@ -3874,52 +3854,6 @@
3874
3854
  "node": ">=8"
3875
3855
  }
3876
3856
  },
3877
- "node_modules/@testing-library/react": {
3878
- "version": "11.2.7",
3879
- "resolved": "https://registry.npmjs.org/@testing-library/react/-/react-11.2.7.tgz",
3880
- "integrity": "sha512-tzRNp7pzd5QmbtXNG/mhdcl7Awfu/Iz1RaVHY75zTdOkmHCuzMhRL83gWHSgOAcjS3CCbyfwUHMZgRJb4kAfpA==",
3881
- "license": "MIT",
3882
- "dependencies": {
3883
- "@babel/runtime": "^7.12.5",
3884
- "@testing-library/dom": "^7.28.1"
3885
- },
3886
- "engines": {
3887
- "node": ">=10"
3888
- },
3889
- "peerDependencies": {
3890
- "react": "*",
3891
- "react-dom": "*"
3892
- }
3893
- },
3894
- "node_modules/@testing-library/react-hooks": {
3895
- "version": "7.0.2",
3896
- "resolved": "https://registry.npmjs.org/@testing-library/react-hooks/-/react-hooks-7.0.2.tgz",
3897
- "integrity": "sha512-dYxpz8u9m4q1TuzfcUApqi8iFfR6R0FaMbr2hjZJy1uC8z+bO/K4v8Gs9eogGKYQop7QsrBTFkv/BCF7MzD2Cg==",
3898
- "license": "MIT",
3899
- "dependencies": {
3900
- "@babel/runtime": "^7.12.5",
3901
- "@types/react": ">=16.9.0",
3902
- "@types/react-dom": ">=16.9.0",
3903
- "@types/react-test-renderer": ">=16.9.0",
3904
- "react-error-boundary": "^3.1.0"
3905
- },
3906
- "engines": {
3907
- "node": ">=12"
3908
- },
3909
- "peerDependencies": {
3910
- "react": ">=16.9.0",
3911
- "react-dom": ">=16.9.0",
3912
- "react-test-renderer": ">=16.9.0"
3913
- },
3914
- "peerDependenciesMeta": {
3915
- "react-dom": {
3916
- "optional": true
3917
- },
3918
- "react-test-renderer": {
3919
- "optional": true
3920
- }
3921
- }
3922
- },
3923
3857
  "node_modules/@tootallnate/once": {
3924
3858
  "version": "2.0.0",
3925
3859
  "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-2.0.0.tgz",
@@ -3929,12 +3863,6 @@
3929
3863
  "node": ">= 10"
3930
3864
  }
3931
3865
  },
3932
- "node_modules/@types/aria-query": {
3933
- "version": "4.2.2",
3934
- "resolved": "https://registry.npmjs.org/@types/aria-query/-/aria-query-4.2.2.tgz",
3935
- "integrity": "sha512-HnYpAE1Y6kRyKM/XkEuiRQhTHvkzMBurTHnpFLYLBGPIylZNPs9jJcuOOYWxPLJCSEtmZT0Y8rHDokKN7rRTig==",
3936
- "license": "MIT"
3937
- },
3938
3866
  "node_modules/@types/babel__core": {
3939
3867
  "version": "7.20.5",
3940
3868
  "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz",
@@ -4136,33 +4064,6 @@
4136
4064
  "integrity": "sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==",
4137
4065
  "license": "MIT"
4138
4066
  },
4139
- "node_modules/@types/react": {
4140
- "version": "19.2.7",
4141
- "resolved": "https://registry.npmjs.org/@types/react/-/react-19.2.7.tgz",
4142
- "integrity": "sha512-MWtvHrGZLFttgeEj28VXHxpmwYbor/ATPYbBfSFZEIRK0ecCFLl2Qo55z52Hss+UV9CRN7trSeq1zbgx7YDWWg==",
4143
- "license": "MIT",
4144
- "dependencies": {
4145
- "csstype": "^3.2.2"
4146
- }
4147
- },
4148
- "node_modules/@types/react-dom": {
4149
- "version": "19.2.3",
4150
- "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-19.2.3.tgz",
4151
- "integrity": "sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ==",
4152
- "license": "MIT",
4153
- "peerDependencies": {
4154
- "@types/react": "^19.2.0"
4155
- }
4156
- },
4157
- "node_modules/@types/react-test-renderer": {
4158
- "version": "19.1.0",
4159
- "resolved": "https://registry.npmjs.org/@types/react-test-renderer/-/react-test-renderer-19.1.0.tgz",
4160
- "integrity": "sha512-XD0WZrHqjNrxA/MaR9O22w/RNidWR9YZmBdRGI7wcnWGrv/3dA8wKCJ8m63Sn+tLJhcjmuhOi629N66W6kgWzQ==",
4161
- "license": "MIT",
4162
- "dependencies": {
4163
- "@types/react": "*"
4164
- }
4165
- },
4166
4067
  "node_modules/@types/set-cookie-parser": {
4167
4068
  "version": "2.4.10",
4168
4069
  "resolved": "https://registry.npmjs.org/@types/set-cookie-parser/-/set-cookie-parser-2.4.10.tgz",
@@ -5244,9 +5145,9 @@
5244
5145
  "license": "MIT"
5245
5146
  },
5246
5147
  "node_modules/convert-source-map": {
5247
- "version": "1.9.0",
5248
- "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz",
5249
- "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==",
5148
+ "version": "2.0.0",
5149
+ "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz",
5150
+ "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==",
5250
5151
  "license": "MIT"
5251
5152
  },
5252
5153
  "node_modules/cookie": {
@@ -5371,12 +5272,6 @@
5371
5272
  "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==",
5372
5273
  "license": "MIT"
5373
5274
  },
5374
- "node_modules/csstype": {
5375
- "version": "3.2.3",
5376
- "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.2.3.tgz",
5377
- "integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==",
5378
- "license": "MIT"
5379
- },
5380
5275
  "node_modules/data-urls": {
5381
5276
  "version": "3.0.2",
5382
5277
  "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-3.0.2.tgz",
@@ -5600,12 +5495,6 @@
5600
5495
  "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
5601
5496
  }
5602
5497
  },
5603
- "node_modules/dom-accessibility-api": {
5604
- "version": "0.5.16",
5605
- "resolved": "https://registry.npmjs.org/dom-accessibility-api/-/dom-accessibility-api-0.5.16.tgz",
5606
- "integrity": "sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==",
5607
- "license": "MIT"
5608
- },
5609
5498
  "node_modules/domexception": {
5610
5499
  "version": "4.0.0",
5611
5500
  "resolved": "https://registry.npmjs.org/domexception/-/domexception-4.0.0.tgz",
@@ -9533,15 +9422,6 @@
9533
9422
  "node": ">=12"
9534
9423
  }
9535
9424
  },
9536
- "node_modules/lz-string": {
9537
- "version": "1.5.0",
9538
- "resolved": "https://registry.npmjs.org/lz-string/-/lz-string-1.5.0.tgz",
9539
- "integrity": "sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==",
9540
- "license": "MIT",
9541
- "bin": {
9542
- "lz-string": "bin/bin.js"
9543
- }
9544
- },
9545
9425
  "node_modules/make-dir": {
9546
9426
  "version": "2.1.0",
9547
9427
  "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz",
@@ -10625,55 +10505,6 @@
10625
10505
  "node": ">= 0.8.0"
10626
10506
  }
10627
10507
  },
10628
- "node_modules/pretty-format": {
10629
- "version": "26.6.2",
10630
- "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-26.6.2.tgz",
10631
- "integrity": "sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==",
10632
- "license": "MIT",
10633
- "dependencies": {
10634
- "@jest/types": "^26.6.2",
10635
- "ansi-regex": "^5.0.0",
10636
- "ansi-styles": "^4.0.0",
10637
- "react-is": "^17.0.1"
10638
- },
10639
- "engines": {
10640
- "node": ">= 10"
10641
- }
10642
- },
10643
- "node_modules/pretty-format/node_modules/@jest/types": {
10644
- "version": "26.6.2",
10645
- "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz",
10646
- "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==",
10647
- "license": "MIT",
10648
- "dependencies": {
10649
- "@types/istanbul-lib-coverage": "^2.0.0",
10650
- "@types/istanbul-reports": "^3.0.0",
10651
- "@types/node": "*",
10652
- "@types/yargs": "^15.0.0",
10653
- "chalk": "^4.0.0"
10654
- },
10655
- "engines": {
10656
- "node": ">= 10.14.2"
10657
- }
10658
- },
10659
- "node_modules/pretty-format/node_modules/@types/yargs": {
10660
- "version": "15.0.20",
10661
- "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.20.tgz",
10662
- "integrity": "sha512-KIkX+/GgfFitlASYCGoSF+T4XRXhOubJLhkLVtSfsRTe9jWMmuM2g28zQ41BtPTG7TRBb2xHW+LCNVE9QR/vsg==",
10663
- "license": "MIT",
10664
- "dependencies": {
10665
- "@types/yargs-parser": "*"
10666
- }
10667
- },
10668
- "node_modules/pretty-format/node_modules/ansi-regex": {
10669
- "version": "5.0.1",
10670
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
10671
- "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
10672
- "license": "MIT",
10673
- "engines": {
10674
- "node": ">=8"
10675
- }
10676
- },
10677
10508
  "node_modules/progress": {
10678
10509
  "version": "2.0.3",
10679
10510
  "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz",
@@ -10822,28 +10653,6 @@
10822
10653
  "react": "^19.2.1"
10823
10654
  }
10824
10655
  },
10825
- "node_modules/react-error-boundary": {
10826
- "version": "3.1.4",
10827
- "resolved": "https://registry.npmjs.org/react-error-boundary/-/react-error-boundary-3.1.4.tgz",
10828
- "integrity": "sha512-uM9uPzZJTF6wRQORmSrvOIgt4lJ9MC1sNgEOj2XGsDTRE4kmpWxg7ENK9EWNKJRMAOY9z0MuF4yIfl6gp4sotA==",
10829
- "license": "MIT",
10830
- "dependencies": {
10831
- "@babel/runtime": "^7.12.5"
10832
- },
10833
- "engines": {
10834
- "node": ">=10",
10835
- "npm": ">=6"
10836
- },
10837
- "peerDependencies": {
10838
- "react": ">=16.13.1"
10839
- }
10840
- },
10841
- "node_modules/react-is": {
10842
- "version": "17.0.2",
10843
- "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz",
10844
- "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==",
10845
- "license": "MIT"
10846
- },
10847
10656
  "node_modules/read-package-up": {
10848
10657
  "version": "11.0.0",
10849
10658
  "resolved": "https://registry.npmjs.org/read-package-up/-/read-package-up-11.0.0.tgz",
@@ -12296,12 +12105,6 @@
12296
12105
  "node": ">=10.12.0"
12297
12106
  }
12298
12107
  },
12299
- "node_modules/v8-to-istanbul/node_modules/convert-source-map": {
12300
- "version": "2.0.0",
12301
- "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz",
12302
- "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==",
12303
- "license": "MIT"
12304
- },
12305
12108
  "node_modules/v8flags": {
12306
12109
  "version": "3.2.0",
12307
12110
  "resolved": "https://registry.npmjs.org/v8flags/-/v8flags-3.2.0.tgz",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zohodesk/testinglibrary",
3
- "version": "3.2.18",
3
+ "version": "3.2.19",
4
4
  "main": "./build/index.js",
5
5
  "scripts": {
6
6
  "postinstall": "node bin/postinstall.js",
@@ -26,8 +26,6 @@
26
26
  "@playwright/test": "1.53.2",
27
27
  "@reportportal/agent-js-playwright": "5.1.11",
28
28
  "@testing-library/jest-dom": "5.11.9",
29
- "@testing-library/react": "11.2.7",
30
- "@testing-library/react-hooks": "7.0.2",
31
29
  "babel-jest": "29.6.2",
32
30
  "babel-plugin-transform-dynamic-import": "2.1.0",
33
31
  "fast-glob": "3.3.1",