@zohodesk/testinglibrary 0.5.12-n18-experimental → 0.5.14-n18-experimental
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 +26 -0
- package/build/core/playwright/helpers/auth/loginDefaultStepsHelper.js +1 -0
- package/build/core/playwright/helpers/auth/loginSteps.js +11 -5
- package/build/core/playwright/readConfigFile.js +10 -1
- package/build/index.d.ts +0 -1
- package/build/index.js +0 -2
- package/npm-shrinkwrap.json +34 -436
- package/package.json +1 -3
package/README.md
CHANGED
|
@@ -17,6 +17,32 @@
|
|
|
17
17
|
|
|
18
18
|
- npm run report
|
|
19
19
|
|
|
20
|
+
|
|
21
|
+
### v4.0.3/v3.2.19 - 17-12-2025
|
|
22
|
+
|
|
23
|
+
#### Enhancement
|
|
24
|
+
- Cookie storage prefix support is provided in this version.
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
### v4.0.2 - 16-12-2025
|
|
28
|
+
|
|
29
|
+
#### Bug Fixes
|
|
30
|
+
|
|
31
|
+
- Deprecated the react and react hooks from dependencies
|
|
32
|
+
- @cucumber/cucumber - 10.9.0 version downgraded due to Missing Step Definition Issue
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
### v4.0.0 - 04-12-2025
|
|
36
|
+
|
|
37
|
+
#### Features
|
|
38
|
+
- Supported node 20 for the testing-framework
|
|
39
|
+
|
|
40
|
+
- Below package versions are updated in this release.
|
|
41
|
+
- playwright - 1.56.1,
|
|
42
|
+
- playwright-bdd - 8.4.2,
|
|
43
|
+
- @playwright/test - 1.56.1,
|
|
44
|
+
- @cucumber/cucumber - 12.2.0
|
|
45
|
+
|
|
20
46
|
### v3.2.15 - 14-11-2025
|
|
21
47
|
|
|
22
48
|
#### Enhancement
|
|
@@ -41,6 +41,7 @@ async function executeDefaultLoginSteps(context, testInfo, testDetails, testPort
|
|
|
41
41
|
}
|
|
42
42
|
try {
|
|
43
43
|
const projectName = testInfo.project.name;
|
|
44
|
+
testDetails.authFilePrefix = process.env.authFilePrefix;
|
|
44
45
|
if (testPortalDetails && projectName !== 'setup' && projectName !== 'cleanup') {
|
|
45
46
|
await context.clearCookies();
|
|
46
47
|
await (0, _auth.performLoginSteps)(testDetails, async testInfo => {
|
|
@@ -18,14 +18,20 @@ async function performLoginSteps(testInfo, isLoggedIn, loginSteps) {
|
|
|
18
18
|
authFilePrefix,
|
|
19
19
|
email
|
|
20
20
|
} = testInfo;
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
21
|
+
let authFileName;
|
|
22
|
+
if (authFilePrefix) {
|
|
23
|
+
authFileName = `${authFilePrefix}-${email}`;
|
|
24
|
+
process.env.authFilePrefix = authFilePrefix;
|
|
25
|
+
} else {
|
|
26
|
+
authFileName = `${email}`;
|
|
27
|
+
}
|
|
28
|
+
const authFile = _path.default.resolve(_path.default.join((0, _checkAuthCookies.getAuthFileDirectory)(), `${authFileName}-cookies.json`));
|
|
29
|
+
const lockFileName = `${authFileName}`.replace(/[@.]/g, '_');
|
|
24
30
|
const fileMutex = new _fileMutex.default((0, _checkAuthDirectory.getLockDirectoryPath)(), lockFileName, _fileMutexConfig.fileDeletionTimeoutConfig);
|
|
25
31
|
let loginUsingCookie = false;
|
|
26
32
|
try {
|
|
27
33
|
if ((0, _checkAuthCookies.verifyIfCookieFileExists)(authFile)) {
|
|
28
|
-
console.log(`${
|
|
34
|
+
console.log(`${authFileName} Cookie file exists. Loading cookies, worker index - ${process.env.TEST_WORKER_INDEX}`);
|
|
29
35
|
loginUsingCookie = true;
|
|
30
36
|
} else {
|
|
31
37
|
await fileMutex.acquire();
|
|
@@ -40,7 +46,7 @@ async function performLoginSteps(testInfo, isLoggedIn, loginSteps) {
|
|
|
40
46
|
});
|
|
41
47
|
}
|
|
42
48
|
} catch (error) {
|
|
43
|
-
console.error(`Error during login for ${
|
|
49
|
+
console.error(`Error during login for ${authFileName}:`, error);
|
|
44
50
|
} finally {
|
|
45
51
|
if (!loginUsingCookie) {
|
|
46
52
|
await fileMutex.release();
|
|
@@ -17,8 +17,17 @@ var _Configuration = _interopRequireDefault(require("./configuration/Configurati
|
|
|
17
17
|
var _UserArgs = _interopRequireDefault(require("./configuration/UserArgs"));
|
|
18
18
|
var _ConfigurationHelper = require("./configuration/ConfigurationHelper");
|
|
19
19
|
var _configConstants = _interopRequireDefault(require("./constants/configConstants"));
|
|
20
|
+
var _auth = require("./helpers/auth");
|
|
20
21
|
const stage = (0, _ConfigurationHelper.getRunStage)();
|
|
21
22
|
let cachedConfig = null;
|
|
23
|
+
function getPrimaryCookiePath() {
|
|
24
|
+
const {
|
|
25
|
+
email
|
|
26
|
+
} = (0, _auth.getDefaultActor)();
|
|
27
|
+
const authFilePrefix = process.env.authFilePrefix;
|
|
28
|
+
let authFileName = authFilePrefix ? `${authFilePrefix}-${email}` : `${email}`;
|
|
29
|
+
return `${_configConstants.default.TEST_SLICE_FOLDER}/${stage}/playwright/.auth/${authFileName}-cookies.json`;
|
|
30
|
+
}
|
|
22
31
|
function getDefaultConfig() {
|
|
23
32
|
return {
|
|
24
33
|
isTearDown: true,
|
|
@@ -35,7 +44,7 @@ function getDefaultConfig() {
|
|
|
35
44
|
bddMode: false,
|
|
36
45
|
expectTimeout: 5 * 1000,
|
|
37
46
|
testTimeout: 60 * 1000,
|
|
38
|
-
authFilePath:
|
|
47
|
+
authFilePath: getPrimaryCookiePath(),
|
|
39
48
|
viewport: {
|
|
40
49
|
width: 1280,
|
|
41
50
|
height: 720
|
package/build/index.d.ts
CHANGED
package/build/index.js
CHANGED
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zohodesk/testinglibrary",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.14-n18-experimental",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@zohodesk/testinglibrary",
|
|
9
|
-
"version": "0.5.
|
|
9
|
+
"version": "0.5.14-n18-experimental",
|
|
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",
|
|
@@ -2707,12 +2705,6 @@
|
|
|
2707
2705
|
"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
|
|
2708
2706
|
}
|
|
2709
2707
|
},
|
|
2710
|
-
"node_modules/@jest/console/node_modules/react-is": {
|
|
2711
|
-
"version": "18.3.1",
|
|
2712
|
-
"resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz",
|
|
2713
|
-
"integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==",
|
|
2714
|
-
"license": "MIT"
|
|
2715
|
-
},
|
|
2716
2708
|
"node_modules/@jest/console/node_modules/slash": {
|
|
2717
2709
|
"version": "3.0.0",
|
|
2718
2710
|
"resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
|
|
@@ -2815,12 +2807,6 @@
|
|
|
2815
2807
|
"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
|
|
2816
2808
|
}
|
|
2817
2809
|
},
|
|
2818
|
-
"node_modules/@jest/core/node_modules/react-is": {
|
|
2819
|
-
"version": "18.3.1",
|
|
2820
|
-
"resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz",
|
|
2821
|
-
"integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==",
|
|
2822
|
-
"license": "MIT"
|
|
2823
|
-
},
|
|
2824
2810
|
"node_modules/@jest/core/node_modules/slash": {
|
|
2825
2811
|
"version": "3.0.0",
|
|
2826
2812
|
"resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
|
|
@@ -2997,12 +2983,6 @@
|
|
|
2997
2983
|
"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
|
|
2998
2984
|
}
|
|
2999
2985
|
},
|
|
3000
|
-
"node_modules/@jest/expect/node_modules/react-is": {
|
|
3001
|
-
"version": "18.3.1",
|
|
3002
|
-
"resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz",
|
|
3003
|
-
"integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==",
|
|
3004
|
-
"license": "MIT"
|
|
3005
|
-
},
|
|
3006
2986
|
"node_modules/@jest/expect/node_modules/slash": {
|
|
3007
2987
|
"version": "3.0.0",
|
|
3008
2988
|
"resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
|
|
@@ -3089,12 +3069,6 @@
|
|
|
3089
3069
|
"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
|
|
3090
3070
|
}
|
|
3091
3071
|
},
|
|
3092
|
-
"node_modules/@jest/fake-timers/node_modules/react-is": {
|
|
3093
|
-
"version": "18.3.1",
|
|
3094
|
-
"resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz",
|
|
3095
|
-
"integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==",
|
|
3096
|
-
"license": "MIT"
|
|
3097
|
-
},
|
|
3098
3072
|
"node_modules/@jest/fake-timers/node_modules/slash": {
|
|
3099
3073
|
"version": "3.0.0",
|
|
3100
3074
|
"resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
|
|
@@ -3317,12 +3291,6 @@
|
|
|
3317
3291
|
"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
|
|
3318
3292
|
}
|
|
3319
3293
|
},
|
|
3320
|
-
"node_modules/@jest/reporters/node_modules/react-is": {
|
|
3321
|
-
"version": "18.3.1",
|
|
3322
|
-
"resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz",
|
|
3323
|
-
"integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==",
|
|
3324
|
-
"license": "MIT"
|
|
3325
|
-
},
|
|
3326
3294
|
"node_modules/@jest/reporters/node_modules/slash": {
|
|
3327
3295
|
"version": "3.0.0",
|
|
3328
3296
|
"resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
|
|
@@ -3739,25 +3707,6 @@
|
|
|
3739
3707
|
"node": ">=14"
|
|
3740
3708
|
}
|
|
3741
3709
|
},
|
|
3742
|
-
"node_modules/@testing-library/dom": {
|
|
3743
|
-
"version": "7.31.2",
|
|
3744
|
-
"resolved": "https://registry.npmjs.org/@testing-library/dom/-/dom-7.31.2.tgz",
|
|
3745
|
-
"integrity": "sha512-3UqjCpey6HiTZT92vODYLPxTBWlM8ZOOjr3LX5F37/VRipW2M1kX6I/Cm4VXzteZqfGfagg8yXywpcOgQBlNsQ==",
|
|
3746
|
-
"license": "MIT",
|
|
3747
|
-
"dependencies": {
|
|
3748
|
-
"@babel/code-frame": "^7.10.4",
|
|
3749
|
-
"@babel/runtime": "^7.12.5",
|
|
3750
|
-
"@types/aria-query": "^4.2.0",
|
|
3751
|
-
"aria-query": "^4.2.2",
|
|
3752
|
-
"chalk": "^4.1.0",
|
|
3753
|
-
"dom-accessibility-api": "^0.5.6",
|
|
3754
|
-
"lz-string": "^1.4.4",
|
|
3755
|
-
"pretty-format": "^26.6.2"
|
|
3756
|
-
},
|
|
3757
|
-
"engines": {
|
|
3758
|
-
"node": ">=10"
|
|
3759
|
-
}
|
|
3760
|
-
},
|
|
3761
3710
|
"node_modules/@testing-library/jest-dom": {
|
|
3762
3711
|
"version": "5.11.9",
|
|
3763
3712
|
"resolved": "https://registry.npmjs.org/@testing-library/jest-dom/-/jest-dom-5.11.9.tgz",
|
|
@@ -3804,52 +3753,6 @@
|
|
|
3804
3753
|
"node": ">=8"
|
|
3805
3754
|
}
|
|
3806
3755
|
},
|
|
3807
|
-
"node_modules/@testing-library/react": {
|
|
3808
|
-
"version": "11.2.7",
|
|
3809
|
-
"resolved": "https://registry.npmjs.org/@testing-library/react/-/react-11.2.7.tgz",
|
|
3810
|
-
"integrity": "sha512-tzRNp7pzd5QmbtXNG/mhdcl7Awfu/Iz1RaVHY75zTdOkmHCuzMhRL83gWHSgOAcjS3CCbyfwUHMZgRJb4kAfpA==",
|
|
3811
|
-
"license": "MIT",
|
|
3812
|
-
"dependencies": {
|
|
3813
|
-
"@babel/runtime": "^7.12.5",
|
|
3814
|
-
"@testing-library/dom": "^7.28.1"
|
|
3815
|
-
},
|
|
3816
|
-
"engines": {
|
|
3817
|
-
"node": ">=10"
|
|
3818
|
-
},
|
|
3819
|
-
"peerDependencies": {
|
|
3820
|
-
"react": "*",
|
|
3821
|
-
"react-dom": "*"
|
|
3822
|
-
}
|
|
3823
|
-
},
|
|
3824
|
-
"node_modules/@testing-library/react-hooks": {
|
|
3825
|
-
"version": "7.0.2",
|
|
3826
|
-
"resolved": "https://registry.npmjs.org/@testing-library/react-hooks/-/react-hooks-7.0.2.tgz",
|
|
3827
|
-
"integrity": "sha512-dYxpz8u9m4q1TuzfcUApqi8iFfR6R0FaMbr2hjZJy1uC8z+bO/K4v8Gs9eogGKYQop7QsrBTFkv/BCF7MzD2Cg==",
|
|
3828
|
-
"license": "MIT",
|
|
3829
|
-
"dependencies": {
|
|
3830
|
-
"@babel/runtime": "^7.12.5",
|
|
3831
|
-
"@types/react": ">=16.9.0",
|
|
3832
|
-
"@types/react-dom": ">=16.9.0",
|
|
3833
|
-
"@types/react-test-renderer": ">=16.9.0",
|
|
3834
|
-
"react-error-boundary": "^3.1.0"
|
|
3835
|
-
},
|
|
3836
|
-
"engines": {
|
|
3837
|
-
"node": ">=12"
|
|
3838
|
-
},
|
|
3839
|
-
"peerDependencies": {
|
|
3840
|
-
"react": ">=16.9.0",
|
|
3841
|
-
"react-dom": ">=16.9.0",
|
|
3842
|
-
"react-test-renderer": ">=16.9.0"
|
|
3843
|
-
},
|
|
3844
|
-
"peerDependenciesMeta": {
|
|
3845
|
-
"react-dom": {
|
|
3846
|
-
"optional": true
|
|
3847
|
-
},
|
|
3848
|
-
"react-test-renderer": {
|
|
3849
|
-
"optional": true
|
|
3850
|
-
}
|
|
3851
|
-
}
|
|
3852
|
-
},
|
|
3853
3756
|
"node_modules/@tootallnate/once": {
|
|
3854
3757
|
"version": "2.0.0",
|
|
3855
3758
|
"resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-2.0.0.tgz",
|
|
@@ -3859,12 +3762,6 @@
|
|
|
3859
3762
|
"node": ">= 10"
|
|
3860
3763
|
}
|
|
3861
3764
|
},
|
|
3862
|
-
"node_modules/@types/aria-query": {
|
|
3863
|
-
"version": "4.2.2",
|
|
3864
|
-
"resolved": "https://registry.npmjs.org/@types/aria-query/-/aria-query-4.2.2.tgz",
|
|
3865
|
-
"integrity": "sha512-HnYpAE1Y6kRyKM/XkEuiRQhTHvkzMBurTHnpFLYLBGPIylZNPs9jJcuOOYWxPLJCSEtmZT0Y8rHDokKN7rRTig==",
|
|
3866
|
-
"license": "MIT"
|
|
3867
|
-
},
|
|
3868
3765
|
"node_modules/@types/babel__core": {
|
|
3869
3766
|
"version": "7.20.5",
|
|
3870
3767
|
"resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz",
|
|
@@ -3971,56 +3868,6 @@
|
|
|
3971
3868
|
"pretty-format": "^30.0.0"
|
|
3972
3869
|
}
|
|
3973
3870
|
},
|
|
3974
|
-
"node_modules/@types/jest/node_modules/@jest/schemas": {
|
|
3975
|
-
"version": "30.0.5",
|
|
3976
|
-
"resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-30.0.5.tgz",
|
|
3977
|
-
"integrity": "sha512-DmdYgtezMkh3cpU8/1uyXakv3tJRcmcXxBOcO0tbaozPwpmh4YMsnWrQm9ZmZMfa5ocbxzbFk6O4bDPEc/iAnA==",
|
|
3978
|
-
"license": "MIT",
|
|
3979
|
-
"dependencies": {
|
|
3980
|
-
"@sinclair/typebox": "^0.34.0"
|
|
3981
|
-
},
|
|
3982
|
-
"engines": {
|
|
3983
|
-
"node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0"
|
|
3984
|
-
}
|
|
3985
|
-
},
|
|
3986
|
-
"node_modules/@types/jest/node_modules/@sinclair/typebox": {
|
|
3987
|
-
"version": "0.34.41",
|
|
3988
|
-
"resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.34.41.tgz",
|
|
3989
|
-
"integrity": "sha512-6gS8pZzSXdyRHTIqoqSVknxolr1kzfy4/CeDnrzsVz8TTIWUbOBr6gnzOmTYJ3eXQNh4IYHIGi5aIL7sOZ2G/g==",
|
|
3990
|
-
"license": "MIT"
|
|
3991
|
-
},
|
|
3992
|
-
"node_modules/@types/jest/node_modules/ansi-styles": {
|
|
3993
|
-
"version": "5.2.0",
|
|
3994
|
-
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz",
|
|
3995
|
-
"integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==",
|
|
3996
|
-
"license": "MIT",
|
|
3997
|
-
"engines": {
|
|
3998
|
-
"node": ">=10"
|
|
3999
|
-
},
|
|
4000
|
-
"funding": {
|
|
4001
|
-
"url": "https://github.com/chalk/ansi-styles?sponsor=1"
|
|
4002
|
-
}
|
|
4003
|
-
},
|
|
4004
|
-
"node_modules/@types/jest/node_modules/pretty-format": {
|
|
4005
|
-
"version": "30.2.0",
|
|
4006
|
-
"resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-30.2.0.tgz",
|
|
4007
|
-
"integrity": "sha512-9uBdv/B4EefsuAL+pWqueZyZS2Ba+LxfFeQ9DN14HU4bN8bhaxKdkpjpB6fs9+pSjIBu+FXQHImEg8j/Lw0+vA==",
|
|
4008
|
-
"license": "MIT",
|
|
4009
|
-
"dependencies": {
|
|
4010
|
-
"@jest/schemas": "30.0.5",
|
|
4011
|
-
"ansi-styles": "^5.2.0",
|
|
4012
|
-
"react-is": "^18.3.1"
|
|
4013
|
-
},
|
|
4014
|
-
"engines": {
|
|
4015
|
-
"node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0"
|
|
4016
|
-
}
|
|
4017
|
-
},
|
|
4018
|
-
"node_modules/@types/jest/node_modules/react-is": {
|
|
4019
|
-
"version": "18.3.1",
|
|
4020
|
-
"resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz",
|
|
4021
|
-
"integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==",
|
|
4022
|
-
"license": "MIT"
|
|
4023
|
-
},
|
|
4024
3871
|
"node_modules/@types/js-levenshtein": {
|
|
4025
3872
|
"version": "1.1.3",
|
|
4026
3873
|
"resolved": "https://registry.npmjs.org/@types/js-levenshtein/-/js-levenshtein-1.1.3.tgz",
|
|
@@ -4066,33 +3913,6 @@
|
|
|
4066
3913
|
"integrity": "sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==",
|
|
4067
3914
|
"license": "MIT"
|
|
4068
3915
|
},
|
|
4069
|
-
"node_modules/@types/react": {
|
|
4070
|
-
"version": "19.2.7",
|
|
4071
|
-
"resolved": "https://registry.npmjs.org/@types/react/-/react-19.2.7.tgz",
|
|
4072
|
-
"integrity": "sha512-MWtvHrGZLFttgeEj28VXHxpmwYbor/ATPYbBfSFZEIRK0ecCFLl2Qo55z52Hss+UV9CRN7trSeq1zbgx7YDWWg==",
|
|
4073
|
-
"license": "MIT",
|
|
4074
|
-
"dependencies": {
|
|
4075
|
-
"csstype": "^3.2.2"
|
|
4076
|
-
}
|
|
4077
|
-
},
|
|
4078
|
-
"node_modules/@types/react-dom": {
|
|
4079
|
-
"version": "19.2.3",
|
|
4080
|
-
"resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-19.2.3.tgz",
|
|
4081
|
-
"integrity": "sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ==",
|
|
4082
|
-
"license": "MIT",
|
|
4083
|
-
"peerDependencies": {
|
|
4084
|
-
"@types/react": "^19.2.0"
|
|
4085
|
-
}
|
|
4086
|
-
},
|
|
4087
|
-
"node_modules/@types/react-test-renderer": {
|
|
4088
|
-
"version": "19.1.0",
|
|
4089
|
-
"resolved": "https://registry.npmjs.org/@types/react-test-renderer/-/react-test-renderer-19.1.0.tgz",
|
|
4090
|
-
"integrity": "sha512-XD0WZrHqjNrxA/MaR9O22w/RNidWR9YZmBdRGI7wcnWGrv/3dA8wKCJ8m63Sn+tLJhcjmuhOi629N66W6kgWzQ==",
|
|
4091
|
-
"license": "MIT",
|
|
4092
|
-
"dependencies": {
|
|
4093
|
-
"@types/react": "*"
|
|
4094
|
-
}
|
|
4095
|
-
},
|
|
4096
3916
|
"node_modules/@types/set-cookie-parser": {
|
|
4097
3917
|
"version": "2.4.10",
|
|
4098
3918
|
"resolved": "https://registry.npmjs.org/@types/set-cookie-parser/-/set-cookie-parser-2.4.10.tgz",
|
|
@@ -5301,12 +5121,6 @@
|
|
|
5301
5121
|
"integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==",
|
|
5302
5122
|
"license": "MIT"
|
|
5303
5123
|
},
|
|
5304
|
-
"node_modules/csstype": {
|
|
5305
|
-
"version": "3.2.3",
|
|
5306
|
-
"resolved": "https://registry.npmjs.org/csstype/-/csstype-3.2.3.tgz",
|
|
5307
|
-
"integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==",
|
|
5308
|
-
"license": "MIT"
|
|
5309
|
-
},
|
|
5310
5124
|
"node_modules/data-urls": {
|
|
5311
5125
|
"version": "3.0.2",
|
|
5312
5126
|
"resolved": "https://registry.npmjs.org/data-urls/-/data-urls-3.0.2.tgz",
|
|
@@ -5418,9 +5232,9 @@
|
|
|
5418
5232
|
}
|
|
5419
5233
|
},
|
|
5420
5234
|
"node_modules/dedent": {
|
|
5421
|
-
"version": "1.7.
|
|
5422
|
-
"resolved": "https://registry.npmjs.org/dedent/-/dedent-1.7.
|
|
5423
|
-
"integrity": "sha512-
|
|
5235
|
+
"version": "1.7.1",
|
|
5236
|
+
"resolved": "https://registry.npmjs.org/dedent/-/dedent-1.7.1.tgz",
|
|
5237
|
+
"integrity": "sha512-9JmrhGZpOlEgOLdQgSm0zxFaYoQon408V1v49aqTWuXENVlnCuY9JBZcXZiCsZQWDjTm5Qf/nIvAy77mXDAjEg==",
|
|
5424
5238
|
"license": "MIT",
|
|
5425
5239
|
"peerDependencies": {
|
|
5426
5240
|
"babel-plugin-macros": "^3.1.0"
|
|
@@ -5530,12 +5344,6 @@
|
|
|
5530
5344
|
"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
|
|
5531
5345
|
}
|
|
5532
5346
|
},
|
|
5533
|
-
"node_modules/dom-accessibility-api": {
|
|
5534
|
-
"version": "0.5.16",
|
|
5535
|
-
"resolved": "https://registry.npmjs.org/dom-accessibility-api/-/dom-accessibility-api-0.5.16.tgz",
|
|
5536
|
-
"integrity": "sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==",
|
|
5537
|
-
"license": "MIT"
|
|
5538
|
-
},
|
|
5539
5347
|
"node_modules/domexception": {
|
|
5540
5348
|
"version": "4.0.0",
|
|
5541
5349
|
"resolved": "https://registry.npmjs.org/domexception/-/domexception-4.0.0.tgz",
|
|
@@ -7880,12 +7688,6 @@
|
|
|
7880
7688
|
"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
|
|
7881
7689
|
}
|
|
7882
7690
|
},
|
|
7883
|
-
"node_modules/jest-circus/node_modules/react-is": {
|
|
7884
|
-
"version": "18.3.1",
|
|
7885
|
-
"resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz",
|
|
7886
|
-
"integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==",
|
|
7887
|
-
"license": "MIT"
|
|
7888
|
-
},
|
|
7889
7691
|
"node_modules/jest-circus/node_modules/slash": {
|
|
7890
7692
|
"version": "3.0.0",
|
|
7891
7693
|
"resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
|
|
@@ -8020,12 +7822,6 @@
|
|
|
8020
7822
|
"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
|
|
8021
7823
|
}
|
|
8022
7824
|
},
|
|
8023
|
-
"node_modules/jest-config/node_modules/react-is": {
|
|
8024
|
-
"version": "18.3.1",
|
|
8025
|
-
"resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz",
|
|
8026
|
-
"integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==",
|
|
8027
|
-
"license": "MIT"
|
|
8028
|
-
},
|
|
8029
7825
|
"node_modules/jest-config/node_modules/slash": {
|
|
8030
7826
|
"version": "3.0.0",
|
|
8031
7827
|
"resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
|
|
@@ -8050,56 +7846,6 @@
|
|
|
8050
7846
|
"node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0"
|
|
8051
7847
|
}
|
|
8052
7848
|
},
|
|
8053
|
-
"node_modules/jest-diff/node_modules/@jest/schemas": {
|
|
8054
|
-
"version": "30.0.5",
|
|
8055
|
-
"resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-30.0.5.tgz",
|
|
8056
|
-
"integrity": "sha512-DmdYgtezMkh3cpU8/1uyXakv3tJRcmcXxBOcO0tbaozPwpmh4YMsnWrQm9ZmZMfa5ocbxzbFk6O4bDPEc/iAnA==",
|
|
8057
|
-
"license": "MIT",
|
|
8058
|
-
"dependencies": {
|
|
8059
|
-
"@sinclair/typebox": "^0.34.0"
|
|
8060
|
-
},
|
|
8061
|
-
"engines": {
|
|
8062
|
-
"node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0"
|
|
8063
|
-
}
|
|
8064
|
-
},
|
|
8065
|
-
"node_modules/jest-diff/node_modules/@sinclair/typebox": {
|
|
8066
|
-
"version": "0.34.41",
|
|
8067
|
-
"resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.34.41.tgz",
|
|
8068
|
-
"integrity": "sha512-6gS8pZzSXdyRHTIqoqSVknxolr1kzfy4/CeDnrzsVz8TTIWUbOBr6gnzOmTYJ3eXQNh4IYHIGi5aIL7sOZ2G/g==",
|
|
8069
|
-
"license": "MIT"
|
|
8070
|
-
},
|
|
8071
|
-
"node_modules/jest-diff/node_modules/ansi-styles": {
|
|
8072
|
-
"version": "5.2.0",
|
|
8073
|
-
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz",
|
|
8074
|
-
"integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==",
|
|
8075
|
-
"license": "MIT",
|
|
8076
|
-
"engines": {
|
|
8077
|
-
"node": ">=10"
|
|
8078
|
-
},
|
|
8079
|
-
"funding": {
|
|
8080
|
-
"url": "https://github.com/chalk/ansi-styles?sponsor=1"
|
|
8081
|
-
}
|
|
8082
|
-
},
|
|
8083
|
-
"node_modules/jest-diff/node_modules/pretty-format": {
|
|
8084
|
-
"version": "30.2.0",
|
|
8085
|
-
"resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-30.2.0.tgz",
|
|
8086
|
-
"integrity": "sha512-9uBdv/B4EefsuAL+pWqueZyZS2Ba+LxfFeQ9DN14HU4bN8bhaxKdkpjpB6fs9+pSjIBu+FXQHImEg8j/Lw0+vA==",
|
|
8087
|
-
"license": "MIT",
|
|
8088
|
-
"dependencies": {
|
|
8089
|
-
"@jest/schemas": "30.0.5",
|
|
8090
|
-
"ansi-styles": "^5.2.0",
|
|
8091
|
-
"react-is": "^18.3.1"
|
|
8092
|
-
},
|
|
8093
|
-
"engines": {
|
|
8094
|
-
"node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0"
|
|
8095
|
-
}
|
|
8096
|
-
},
|
|
8097
|
-
"node_modules/jest-diff/node_modules/react-is": {
|
|
8098
|
-
"version": "18.3.1",
|
|
8099
|
-
"resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz",
|
|
8100
|
-
"integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==",
|
|
8101
|
-
"license": "MIT"
|
|
8102
|
-
},
|
|
8103
7849
|
"node_modules/jest-docblock": {
|
|
8104
7850
|
"version": "29.7.0",
|
|
8105
7851
|
"resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.7.0.tgz",
|
|
@@ -8154,12 +7900,6 @@
|
|
|
8154
7900
|
"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
|
|
8155
7901
|
}
|
|
8156
7902
|
},
|
|
8157
|
-
"node_modules/jest-each/node_modules/react-is": {
|
|
8158
|
-
"version": "18.3.1",
|
|
8159
|
-
"resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz",
|
|
8160
|
-
"integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==",
|
|
8161
|
-
"license": "MIT"
|
|
8162
|
-
},
|
|
8163
7903
|
"node_modules/jest-environment-jsdom": {
|
|
8164
7904
|
"version": "29.6.2",
|
|
8165
7905
|
"resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-29.6.2.tgz",
|
|
@@ -8350,12 +8090,6 @@
|
|
|
8350
8090
|
"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
|
|
8351
8091
|
}
|
|
8352
8092
|
},
|
|
8353
|
-
"node_modules/jest-leak-detector/node_modules/react-is": {
|
|
8354
|
-
"version": "18.3.1",
|
|
8355
|
-
"resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz",
|
|
8356
|
-
"integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==",
|
|
8357
|
-
"license": "MIT"
|
|
8358
|
-
},
|
|
8359
8093
|
"node_modules/jest-matcher-utils": {
|
|
8360
8094
|
"version": "30.2.0",
|
|
8361
8095
|
"resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-30.2.0.tgz",
|
|
@@ -8371,56 +8105,6 @@
|
|
|
8371
8105
|
"node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0"
|
|
8372
8106
|
}
|
|
8373
8107
|
},
|
|
8374
|
-
"node_modules/jest-matcher-utils/node_modules/@jest/schemas": {
|
|
8375
|
-
"version": "30.0.5",
|
|
8376
|
-
"resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-30.0.5.tgz",
|
|
8377
|
-
"integrity": "sha512-DmdYgtezMkh3cpU8/1uyXakv3tJRcmcXxBOcO0tbaozPwpmh4YMsnWrQm9ZmZMfa5ocbxzbFk6O4bDPEc/iAnA==",
|
|
8378
|
-
"license": "MIT",
|
|
8379
|
-
"dependencies": {
|
|
8380
|
-
"@sinclair/typebox": "^0.34.0"
|
|
8381
|
-
},
|
|
8382
|
-
"engines": {
|
|
8383
|
-
"node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0"
|
|
8384
|
-
}
|
|
8385
|
-
},
|
|
8386
|
-
"node_modules/jest-matcher-utils/node_modules/@sinclair/typebox": {
|
|
8387
|
-
"version": "0.34.41",
|
|
8388
|
-
"resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.34.41.tgz",
|
|
8389
|
-
"integrity": "sha512-6gS8pZzSXdyRHTIqoqSVknxolr1kzfy4/CeDnrzsVz8TTIWUbOBr6gnzOmTYJ3eXQNh4IYHIGi5aIL7sOZ2G/g==",
|
|
8390
|
-
"license": "MIT"
|
|
8391
|
-
},
|
|
8392
|
-
"node_modules/jest-matcher-utils/node_modules/ansi-styles": {
|
|
8393
|
-
"version": "5.2.0",
|
|
8394
|
-
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz",
|
|
8395
|
-
"integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==",
|
|
8396
|
-
"license": "MIT",
|
|
8397
|
-
"engines": {
|
|
8398
|
-
"node": ">=10"
|
|
8399
|
-
},
|
|
8400
|
-
"funding": {
|
|
8401
|
-
"url": "https://github.com/chalk/ansi-styles?sponsor=1"
|
|
8402
|
-
}
|
|
8403
|
-
},
|
|
8404
|
-
"node_modules/jest-matcher-utils/node_modules/pretty-format": {
|
|
8405
|
-
"version": "30.2.0",
|
|
8406
|
-
"resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-30.2.0.tgz",
|
|
8407
|
-
"integrity": "sha512-9uBdv/B4EefsuAL+pWqueZyZS2Ba+LxfFeQ9DN14HU4bN8bhaxKdkpjpB6fs9+pSjIBu+FXQHImEg8j/Lw0+vA==",
|
|
8408
|
-
"license": "MIT",
|
|
8409
|
-
"dependencies": {
|
|
8410
|
-
"@jest/schemas": "30.0.5",
|
|
8411
|
-
"ansi-styles": "^5.2.0",
|
|
8412
|
-
"react-is": "^18.3.1"
|
|
8413
|
-
},
|
|
8414
|
-
"engines": {
|
|
8415
|
-
"node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0"
|
|
8416
|
-
}
|
|
8417
|
-
},
|
|
8418
|
-
"node_modules/jest-matcher-utils/node_modules/react-is": {
|
|
8419
|
-
"version": "18.3.1",
|
|
8420
|
-
"resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz",
|
|
8421
|
-
"integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==",
|
|
8422
|
-
"license": "MIT"
|
|
8423
|
-
},
|
|
8424
8108
|
"node_modules/jest-message-util": {
|
|
8425
8109
|
"version": "30.2.0",
|
|
8426
8110
|
"resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-30.2.0.tgz",
|
|
@@ -8477,38 +8161,6 @@
|
|
|
8477
8161
|
"integrity": "sha512-6gS8pZzSXdyRHTIqoqSVknxolr1kzfy4/CeDnrzsVz8TTIWUbOBr6gnzOmTYJ3eXQNh4IYHIGi5aIL7sOZ2G/g==",
|
|
8478
8162
|
"license": "MIT"
|
|
8479
8163
|
},
|
|
8480
|
-
"node_modules/jest-message-util/node_modules/ansi-styles": {
|
|
8481
|
-
"version": "5.2.0",
|
|
8482
|
-
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz",
|
|
8483
|
-
"integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==",
|
|
8484
|
-
"license": "MIT",
|
|
8485
|
-
"engines": {
|
|
8486
|
-
"node": ">=10"
|
|
8487
|
-
},
|
|
8488
|
-
"funding": {
|
|
8489
|
-
"url": "https://github.com/chalk/ansi-styles?sponsor=1"
|
|
8490
|
-
}
|
|
8491
|
-
},
|
|
8492
|
-
"node_modules/jest-message-util/node_modules/pretty-format": {
|
|
8493
|
-
"version": "30.2.0",
|
|
8494
|
-
"resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-30.2.0.tgz",
|
|
8495
|
-
"integrity": "sha512-9uBdv/B4EefsuAL+pWqueZyZS2Ba+LxfFeQ9DN14HU4bN8bhaxKdkpjpB6fs9+pSjIBu+FXQHImEg8j/Lw0+vA==",
|
|
8496
|
-
"license": "MIT",
|
|
8497
|
-
"dependencies": {
|
|
8498
|
-
"@jest/schemas": "30.0.5",
|
|
8499
|
-
"ansi-styles": "^5.2.0",
|
|
8500
|
-
"react-is": "^18.3.1"
|
|
8501
|
-
},
|
|
8502
|
-
"engines": {
|
|
8503
|
-
"node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0"
|
|
8504
|
-
}
|
|
8505
|
-
},
|
|
8506
|
-
"node_modules/jest-message-util/node_modules/react-is": {
|
|
8507
|
-
"version": "18.3.1",
|
|
8508
|
-
"resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz",
|
|
8509
|
-
"integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==",
|
|
8510
|
-
"license": "MIT"
|
|
8511
|
-
},
|
|
8512
8164
|
"node_modules/jest-message-util/node_modules/slash": {
|
|
8513
8165
|
"version": "3.0.0",
|
|
8514
8166
|
"resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
|
|
@@ -8758,12 +8410,6 @@
|
|
|
8758
8410
|
"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
|
|
8759
8411
|
}
|
|
8760
8412
|
},
|
|
8761
|
-
"node_modules/jest-runner/node_modules/react-is": {
|
|
8762
|
-
"version": "18.3.1",
|
|
8763
|
-
"resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz",
|
|
8764
|
-
"integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==",
|
|
8765
|
-
"license": "MIT"
|
|
8766
|
-
},
|
|
8767
8413
|
"node_modules/jest-runner/node_modules/slash": {
|
|
8768
8414
|
"version": "3.0.0",
|
|
8769
8415
|
"resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
|
|
@@ -8876,12 +8522,6 @@
|
|
|
8876
8522
|
"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
|
|
8877
8523
|
}
|
|
8878
8524
|
},
|
|
8879
|
-
"node_modules/jest-runtime/node_modules/react-is": {
|
|
8880
|
-
"version": "18.3.1",
|
|
8881
|
-
"resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz",
|
|
8882
|
-
"integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==",
|
|
8883
|
-
"license": "MIT"
|
|
8884
|
-
},
|
|
8885
8525
|
"node_modules/jest-runtime/node_modules/slash": {
|
|
8886
8526
|
"version": "3.0.0",
|
|
8887
8527
|
"resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
|
|
@@ -9026,12 +8666,6 @@
|
|
|
9026
8666
|
"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
|
|
9027
8667
|
}
|
|
9028
8668
|
},
|
|
9029
|
-
"node_modules/jest-snapshot/node_modules/react-is": {
|
|
9030
|
-
"version": "18.3.1",
|
|
9031
|
-
"resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz",
|
|
9032
|
-
"integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==",
|
|
9033
|
-
"license": "MIT"
|
|
9034
|
-
},
|
|
9035
8669
|
"node_modules/jest-snapshot/node_modules/semver": {
|
|
9036
8670
|
"version": "7.7.3",
|
|
9037
8671
|
"resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz",
|
|
@@ -9125,12 +8759,6 @@
|
|
|
9125
8759
|
"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
|
|
9126
8760
|
}
|
|
9127
8761
|
},
|
|
9128
|
-
"node_modules/jest-validate/node_modules/react-is": {
|
|
9129
|
-
"version": "18.3.1",
|
|
9130
|
-
"resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz",
|
|
9131
|
-
"integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==",
|
|
9132
|
-
"license": "MIT"
|
|
9133
|
-
},
|
|
9134
8762
|
"node_modules/jest-watcher": {
|
|
9135
8763
|
"version": "29.7.0",
|
|
9136
8764
|
"resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.7.0.tgz",
|
|
@@ -9463,15 +9091,6 @@
|
|
|
9463
9091
|
"node": ">=12"
|
|
9464
9092
|
}
|
|
9465
9093
|
},
|
|
9466
|
-
"node_modules/lz-string": {
|
|
9467
|
-
"version": "1.5.0",
|
|
9468
|
-
"resolved": "https://registry.npmjs.org/lz-string/-/lz-string-1.5.0.tgz",
|
|
9469
|
-
"integrity": "sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==",
|
|
9470
|
-
"license": "MIT",
|
|
9471
|
-
"bin": {
|
|
9472
|
-
"lz-string": "bin/bin.js"
|
|
9473
|
-
}
|
|
9474
|
-
},
|
|
9475
9094
|
"node_modules/make-dir": {
|
|
9476
9095
|
"version": "2.1.0",
|
|
9477
9096
|
"resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz",
|
|
@@ -10546,52 +10165,47 @@
|
|
|
10546
10165
|
}
|
|
10547
10166
|
},
|
|
10548
10167
|
"node_modules/pretty-format": {
|
|
10549
|
-
"version": "
|
|
10550
|
-
"resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-
|
|
10551
|
-
"integrity": "sha512-
|
|
10168
|
+
"version": "30.2.0",
|
|
10169
|
+
"resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-30.2.0.tgz",
|
|
10170
|
+
"integrity": "sha512-9uBdv/B4EefsuAL+pWqueZyZS2Ba+LxfFeQ9DN14HU4bN8bhaxKdkpjpB6fs9+pSjIBu+FXQHImEg8j/Lw0+vA==",
|
|
10552
10171
|
"license": "MIT",
|
|
10553
10172
|
"dependencies": {
|
|
10554
|
-
"@jest/
|
|
10555
|
-
"ansi-
|
|
10556
|
-
"
|
|
10557
|
-
"react-is": "^17.0.1"
|
|
10173
|
+
"@jest/schemas": "30.0.5",
|
|
10174
|
+
"ansi-styles": "^5.2.0",
|
|
10175
|
+
"react-is": "^18.3.1"
|
|
10558
10176
|
},
|
|
10559
10177
|
"engines": {
|
|
10560
|
-
"node": ">=
|
|
10178
|
+
"node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0"
|
|
10561
10179
|
}
|
|
10562
10180
|
},
|
|
10563
|
-
"node_modules/pretty-format/node_modules/@jest/
|
|
10564
|
-
"version": "
|
|
10565
|
-
"resolved": "https://registry.npmjs.org/@jest/
|
|
10566
|
-
"integrity": "sha512-
|
|
10181
|
+
"node_modules/pretty-format/node_modules/@jest/schemas": {
|
|
10182
|
+
"version": "30.0.5",
|
|
10183
|
+
"resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-30.0.5.tgz",
|
|
10184
|
+
"integrity": "sha512-DmdYgtezMkh3cpU8/1uyXakv3tJRcmcXxBOcO0tbaozPwpmh4YMsnWrQm9ZmZMfa5ocbxzbFk6O4bDPEc/iAnA==",
|
|
10567
10185
|
"license": "MIT",
|
|
10568
10186
|
"dependencies": {
|
|
10569
|
-
"@
|
|
10570
|
-
"@types/istanbul-reports": "^3.0.0",
|
|
10571
|
-
"@types/node": "*",
|
|
10572
|
-
"@types/yargs": "^15.0.0",
|
|
10573
|
-
"chalk": "^4.0.0"
|
|
10187
|
+
"@sinclair/typebox": "^0.34.0"
|
|
10574
10188
|
},
|
|
10575
10189
|
"engines": {
|
|
10576
|
-
"node": "
|
|
10190
|
+
"node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0"
|
|
10577
10191
|
}
|
|
10578
10192
|
},
|
|
10579
|
-
"node_modules/pretty-format/node_modules/@
|
|
10580
|
-
"version": "
|
|
10581
|
-
"resolved": "https://registry.npmjs.org/@
|
|
10582
|
-
"integrity": "sha512-
|
|
10583
|
-
"license": "MIT"
|
|
10584
|
-
"dependencies": {
|
|
10585
|
-
"@types/yargs-parser": "*"
|
|
10586
|
-
}
|
|
10193
|
+
"node_modules/pretty-format/node_modules/@sinclair/typebox": {
|
|
10194
|
+
"version": "0.34.41",
|
|
10195
|
+
"resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.34.41.tgz",
|
|
10196
|
+
"integrity": "sha512-6gS8pZzSXdyRHTIqoqSVknxolr1kzfy4/CeDnrzsVz8TTIWUbOBr6gnzOmTYJ3eXQNh4IYHIGi5aIL7sOZ2G/g==",
|
|
10197
|
+
"license": "MIT"
|
|
10587
10198
|
},
|
|
10588
|
-
"node_modules/pretty-format/node_modules/ansi-
|
|
10589
|
-
"version": "5.0
|
|
10590
|
-
"resolved": "https://registry.npmjs.org/ansi-
|
|
10591
|
-
"integrity": "sha512-
|
|
10199
|
+
"node_modules/pretty-format/node_modules/ansi-styles": {
|
|
10200
|
+
"version": "5.2.0",
|
|
10201
|
+
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz",
|
|
10202
|
+
"integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==",
|
|
10592
10203
|
"license": "MIT",
|
|
10593
10204
|
"engines": {
|
|
10594
|
-
"node": ">=
|
|
10205
|
+
"node": ">=10"
|
|
10206
|
+
},
|
|
10207
|
+
"funding": {
|
|
10208
|
+
"url": "https://github.com/chalk/ansi-styles?sponsor=1"
|
|
10595
10209
|
}
|
|
10596
10210
|
},
|
|
10597
10211
|
"node_modules/progress": {
|
|
@@ -10742,26 +10356,10 @@
|
|
|
10742
10356
|
"react": "^19.2.3"
|
|
10743
10357
|
}
|
|
10744
10358
|
},
|
|
10745
|
-
"node_modules/react-error-boundary": {
|
|
10746
|
-
"version": "3.1.4",
|
|
10747
|
-
"resolved": "https://registry.npmjs.org/react-error-boundary/-/react-error-boundary-3.1.4.tgz",
|
|
10748
|
-
"integrity": "sha512-uM9uPzZJTF6wRQORmSrvOIgt4lJ9MC1sNgEOj2XGsDTRE4kmpWxg7ENK9EWNKJRMAOY9z0MuF4yIfl6gp4sotA==",
|
|
10749
|
-
"license": "MIT",
|
|
10750
|
-
"dependencies": {
|
|
10751
|
-
"@babel/runtime": "^7.12.5"
|
|
10752
|
-
},
|
|
10753
|
-
"engines": {
|
|
10754
|
-
"node": ">=10",
|
|
10755
|
-
"npm": ">=6"
|
|
10756
|
-
},
|
|
10757
|
-
"peerDependencies": {
|
|
10758
|
-
"react": ">=16.13.1"
|
|
10759
|
-
}
|
|
10760
|
-
},
|
|
10761
10359
|
"node_modules/react-is": {
|
|
10762
|
-
"version": "
|
|
10763
|
-
"resolved": "https://registry.npmjs.org/react-is/-/react-is-
|
|
10764
|
-
"integrity": "sha512
|
|
10360
|
+
"version": "18.3.1",
|
|
10361
|
+
"resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz",
|
|
10362
|
+
"integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==",
|
|
10765
10363
|
"license": "MIT"
|
|
10766
10364
|
},
|
|
10767
10365
|
"node_modules/read-package-up": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zohodesk/testinglibrary",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.14-n18-experimental",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "./build/index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -27,8 +27,6 @@
|
|
|
27
27
|
"@playwright/test": "1.53.2",
|
|
28
28
|
"@reportportal/agent-js-playwright": "5.1.11",
|
|
29
29
|
"@testing-library/jest-dom": "5.11.9",
|
|
30
|
-
"@testing-library/react": "11.2.7",
|
|
31
|
-
"@testing-library/react-hooks": "7.0.2",
|
|
32
30
|
"babel-jest": "29.6.2",
|
|
33
31
|
"babel-plugin-transform-dynamic-import": "2.1.0",
|
|
34
32
|
"fast-glob": "3.3.1",
|