@zohodesk/testinglibrary 3.2.16 → 3.2.18
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
|
@@ -18,16 +18,20 @@
|
|
|
18
18
|
- npm run report
|
|
19
19
|
|
|
20
20
|
### v4.0.0 - 04-12-2025
|
|
21
|
-
|
|
21
|
+
|
|
22
22
|
#### Features
|
|
23
|
+
- Supported node 20 for the testing-framework
|
|
23
24
|
|
|
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
|
|
25
30
|
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
- @cucumber/cucumber - 12.2.0
|
|
31
|
+
### v3.2.18 - 09-12-2025
|
|
32
|
+
|
|
33
|
+
#### Enhancement
|
|
34
|
+
- Cookie storage prefix support is provided in this version.
|
|
31
35
|
|
|
32
36
|
### v3.2.15 - 14-11-2025
|
|
33
37
|
|
|
@@ -41,6 +41,8 @@ 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
46
|
if (testPortalDetails && projectName !== 'setup' && projectName !== 'cleanup') {
|
|
45
47
|
await context.clearCookies();
|
|
46
48
|
await (0, _auth.performLoginSteps)(testDetails, async testInfo => {
|
|
@@ -18,14 +18,22 @@ 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 = email;
|
|
24
|
+
} else if (authFilePrefix.includes(email)) {
|
|
25
|
+
authFileName = authFilePrefix;
|
|
26
|
+
} else {
|
|
27
|
+
authFileName = authFilePrefix + email;
|
|
28
|
+
}
|
|
29
|
+
process.env.authFileName = authFileName;
|
|
30
|
+
const authFile = _path.default.resolve(_path.default.join((0, _checkAuthCookies.getAuthFileDirectory)(), `${authFileName}-cookies.json`));
|
|
31
|
+
const lockFileName = authFileName.replace(/[@.]/g, '_');
|
|
24
32
|
const fileMutex = new _fileMutex.default((0, _checkAuthDirectory.getLockDirectoryPath)(), lockFileName, _fileMutexConfig.fileDeletionTimeoutConfig);
|
|
25
33
|
let loginUsingCookie = false;
|
|
26
34
|
try {
|
|
27
35
|
if ((0, _checkAuthCookies.verifyIfCookieFileExists)(authFile)) {
|
|
28
|
-
console.log(`${
|
|
36
|
+
console.log(`${authFileName} Cookie file exists. Loading cookies, worker index - ${process.env.TEST_WORKER_INDEX}`);
|
|
29
37
|
loginUsingCookie = true;
|
|
30
38
|
} else {
|
|
31
39
|
await fileMutex.acquire();
|
|
@@ -40,7 +48,7 @@ async function performLoginSteps(testInfo, isLoggedIn, loginSteps) {
|
|
|
40
48
|
});
|
|
41
49
|
}
|
|
42
50
|
} catch (error) {
|
|
43
|
-
console.error(`Error during login for ${
|
|
51
|
+
console.error(`Error during login for ${authFileName}:`, error);
|
|
44
52
|
} finally {
|
|
45
53
|
if (!loginUsingCookie) {
|
|
46
54
|
await fileMutex.release();
|
|
@@ -17,6 +17,10 @@ var _Configuration = _interopRequireDefault(require("./configuration/Configurati
|
|
|
17
17
|
var _UserArgs = _interopRequireDefault(require("./configuration/UserArgs"));
|
|
18
18
|
var _ConfigurationHelper = require("./configuration/ConfigurationHelper");
|
|
19
19
|
let cachedConfig = null;
|
|
20
|
+
function getPrimaryCookiePath() {
|
|
21
|
+
const authFileName = process.env.authFileName;
|
|
22
|
+
return `uat/playwright/.auth/${authFileName}-cookies.json`;
|
|
23
|
+
}
|
|
20
24
|
function getDefaultConfig() {
|
|
21
25
|
return {
|
|
22
26
|
isTearDown: true,
|
|
@@ -33,7 +37,7 @@ function getDefaultConfig() {
|
|
|
33
37
|
bddMode: false,
|
|
34
38
|
expectTimeout: 5 * 1000,
|
|
35
39
|
testTimeout: 60 * 1000,
|
|
36
|
-
authFilePath:
|
|
40
|
+
authFilePath: getPrimaryCookiePath(),
|
|
37
41
|
viewport: {
|
|
38
42
|
width: 1280,
|
|
39
43
|
height: 720
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zohodesk/testinglibrary",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.18",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@zohodesk/testinglibrary",
|
|
9
|
-
"version": "3.2.
|
|
9
|
+
"version": "3.2.18",
|
|
10
10
|
"hasInstallScript": true,
|
|
11
11
|
"license": "ISC",
|
|
12
12
|
"dependencies": {
|
|
@@ -2037,6 +2037,67 @@
|
|
|
2037
2037
|
"regexp-match-indices": "1.0.2"
|
|
2038
2038
|
}
|
|
2039
2039
|
},
|
|
2040
|
+
"node_modules/@cucumber/cucumber/node_modules/@cucumber/gherkin": {
|
|
2041
|
+
"version": "30.0.4",
|
|
2042
|
+
"resolved": "https://registry.npmjs.org/@cucumber/gherkin/-/gherkin-30.0.4.tgz",
|
|
2043
|
+
"integrity": "sha512-pb7lmAJqweZRADTTsgnC3F5zbTh3nwOB1M83Q9ZPbUKMb3P76PzK6cTcPTJBHWy3l7isbigIv+BkDjaca6C8/g==",
|
|
2044
|
+
"license": "MIT",
|
|
2045
|
+
"dependencies": {
|
|
2046
|
+
"@cucumber/messages": ">=19.1.4 <=26"
|
|
2047
|
+
}
|
|
2048
|
+
},
|
|
2049
|
+
"node_modules/@cucumber/cucumber/node_modules/@cucumber/gherkin/node_modules/@cucumber/messages": {
|
|
2050
|
+
"version": "26.0.1",
|
|
2051
|
+
"resolved": "https://registry.npmjs.org/@cucumber/messages/-/messages-26.0.1.tgz",
|
|
2052
|
+
"integrity": "sha512-DIxSg+ZGariumO+Lq6bn4kOUIUET83A4umrnWmidjGFl8XxkBieUZtsmNbLYgH/gnsmP07EfxxdTr0hOchV1Sg==",
|
|
2053
|
+
"license": "MIT",
|
|
2054
|
+
"dependencies": {
|
|
2055
|
+
"@types/uuid": "10.0.0",
|
|
2056
|
+
"class-transformer": "0.5.1",
|
|
2057
|
+
"reflect-metadata": "0.2.2",
|
|
2058
|
+
"uuid": "10.0.0"
|
|
2059
|
+
}
|
|
2060
|
+
},
|
|
2061
|
+
"node_modules/@cucumber/cucumber/node_modules/@cucumber/gherkin/node_modules/uuid": {
|
|
2062
|
+
"version": "10.0.0",
|
|
2063
|
+
"resolved": "https://registry.npmjs.org/uuid/-/uuid-10.0.0.tgz",
|
|
2064
|
+
"integrity": "sha512-8XkAphELsDnEGrDxUOHB3RGvXz6TeuYSGEZBOjtTtPm2lwhGBjLgOzLHB63IUWfBpNucQjND6d3AOudO+H3RWQ==",
|
|
2065
|
+
"funding": [
|
|
2066
|
+
"https://github.com/sponsors/broofa",
|
|
2067
|
+
"https://github.com/sponsors/ctavan"
|
|
2068
|
+
],
|
|
2069
|
+
"license": "MIT",
|
|
2070
|
+
"bin": {
|
|
2071
|
+
"uuid": "dist/bin/uuid"
|
|
2072
|
+
}
|
|
2073
|
+
},
|
|
2074
|
+
"node_modules/@cucumber/cucumber/node_modules/@cucumber/html-formatter": {
|
|
2075
|
+
"version": "21.10.1",
|
|
2076
|
+
"resolved": "https://registry.npmjs.org/@cucumber/html-formatter/-/html-formatter-21.10.1.tgz",
|
|
2077
|
+
"integrity": "sha512-isaaNMNnBYThsvaHy7i+9kkk9V3+rhgdkt0pd6TCY6zY1CSRZQ7tG6ST9pYyRaECyfbCeF7UGH0KpNEnh6UNvQ==",
|
|
2078
|
+
"license": "MIT",
|
|
2079
|
+
"peerDependencies": {
|
|
2080
|
+
"@cucumber/messages": ">=18"
|
|
2081
|
+
}
|
|
2082
|
+
},
|
|
2083
|
+
"node_modules/@cucumber/cucumber/node_modules/@cucumber/messages": {
|
|
2084
|
+
"version": "27.2.0",
|
|
2085
|
+
"resolved": "https://registry.npmjs.org/@cucumber/messages/-/messages-27.2.0.tgz",
|
|
2086
|
+
"integrity": "sha512-f2o/HqKHgsqzFLdq6fAhfG1FNOQPdBdyMGpKwhb7hZqg0yZtx9BVqkTyuoNk83Fcvk3wjMVfouFXXHNEk4nddA==",
|
|
2087
|
+
"license": "MIT",
|
|
2088
|
+
"dependencies": {
|
|
2089
|
+
"@types/uuid": "10.0.0",
|
|
2090
|
+
"class-transformer": "0.5.1",
|
|
2091
|
+
"reflect-metadata": "0.2.2",
|
|
2092
|
+
"uuid": "11.0.5"
|
|
2093
|
+
}
|
|
2094
|
+
},
|
|
2095
|
+
"node_modules/@cucumber/cucumber/node_modules/@cucumber/tag-expressions": {
|
|
2096
|
+
"version": "6.1.2",
|
|
2097
|
+
"resolved": "https://registry.npmjs.org/@cucumber/tag-expressions/-/tag-expressions-6.1.2.tgz",
|
|
2098
|
+
"integrity": "sha512-xa3pER+ntZhGCxRXSguDTKEHTZpUUsp+RzTRNnit+vi5cqnk6abLdSLg5i3HZXU3c74nQ8afQC6IT507EN74oQ==",
|
|
2099
|
+
"license": "MIT"
|
|
2100
|
+
},
|
|
2040
2101
|
"node_modules/@cucumber/cucumber/node_modules/brace-expansion": {
|
|
2041
2102
|
"version": "2.0.2",
|
|
2042
2103
|
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz",
|
|
@@ -2075,6 +2136,15 @@
|
|
|
2075
2136
|
"url": "https://github.com/sponsors/isaacs"
|
|
2076
2137
|
}
|
|
2077
2138
|
},
|
|
2139
|
+
"node_modules/@cucumber/cucumber/node_modules/luxon": {
|
|
2140
|
+
"version": "3.6.1",
|
|
2141
|
+
"resolved": "https://registry.npmjs.org/luxon/-/luxon-3.6.1.tgz",
|
|
2142
|
+
"integrity": "sha512-tJLxrKJhO2ukZ5z0gyjY1zPh3Rh88Ej9P7jNrZiHMUXHae1yvI2imgOZtL1TO8TW6biMMKfTtAOoEJANgtWBMQ==",
|
|
2143
|
+
"license": "MIT",
|
|
2144
|
+
"engines": {
|
|
2145
|
+
"node": ">=12"
|
|
2146
|
+
}
|
|
2147
|
+
},
|
|
2078
2148
|
"node_modules/@cucumber/cucumber/node_modules/minimatch": {
|
|
2079
2149
|
"version": "9.0.5",
|
|
2080
2150
|
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz",
|
|
@@ -2102,13 +2172,27 @@
|
|
|
2102
2172
|
"node": ">=10"
|
|
2103
2173
|
}
|
|
2104
2174
|
},
|
|
2175
|
+
"node_modules/@cucumber/cucumber/node_modules/uuid": {
|
|
2176
|
+
"version": "11.0.5",
|
|
2177
|
+
"resolved": "https://registry.npmjs.org/uuid/-/uuid-11.0.5.tgz",
|
|
2178
|
+
"integrity": "sha512-508e6IcKLrhxKdBbcA2b4KQZlLVp2+J5UwQ6F7Drckkc5N9ZJwFa4TgWtsww9UG8fGHbm6gbV19TdM5pQ4GaIA==",
|
|
2179
|
+
"funding": [
|
|
2180
|
+
"https://github.com/sponsors/broofa",
|
|
2181
|
+
"https://github.com/sponsors/ctavan"
|
|
2182
|
+
],
|
|
2183
|
+
"license": "MIT",
|
|
2184
|
+
"bin": {
|
|
2185
|
+
"uuid": "dist/esm/bin/uuid"
|
|
2186
|
+
}
|
|
2187
|
+
},
|
|
2105
2188
|
"node_modules/@cucumber/gherkin": {
|
|
2106
|
-
"version": "
|
|
2107
|
-
"resolved": "https://registry.npmjs.org/@cucumber/gherkin/-/gherkin-
|
|
2108
|
-
"integrity": "sha512-
|
|
2189
|
+
"version": "37.0.0",
|
|
2190
|
+
"resolved": "https://registry.npmjs.org/@cucumber/gherkin/-/gherkin-37.0.0.tgz",
|
|
2191
|
+
"integrity": "sha512-vKJVJ6h4HCktG870wgYUUskNpFxbFI0WmAkVLPTz1LlLwJX7/KOBqFcr2/L3u0pPoHjbLRW+IpbiXLT2T13/wg==",
|
|
2109
2192
|
"license": "MIT",
|
|
2193
|
+
"peer": true,
|
|
2110
2194
|
"dependencies": {
|
|
2111
|
-
"@cucumber/messages": ">=
|
|
2195
|
+
"@cucumber/messages": ">=31.0.0 <32"
|
|
2112
2196
|
}
|
|
2113
2197
|
},
|
|
2114
2198
|
"node_modules/@cucumber/gherkin-streams": {
|
|
@@ -2175,16 +2259,7 @@
|
|
|
2175
2259
|
"uuid": "10.0.0"
|
|
2176
2260
|
}
|
|
2177
2261
|
},
|
|
2178
|
-
"node_modules/@cucumber/gherkin-utils/node_modules/
|
|
2179
|
-
"version": "13.1.0",
|
|
2180
|
-
"resolved": "https://registry.npmjs.org/commander/-/commander-13.1.0.tgz",
|
|
2181
|
-
"integrity": "sha512-/rFeCpNJQbhSZjGVwO9RFV3xPqbnERS8MmIQzCtD/zl6gpJuV/bMLuN92oG3F7d8oDEHHRrujSXNUr8fpjntKw==",
|
|
2182
|
-
"license": "MIT",
|
|
2183
|
-
"engines": {
|
|
2184
|
-
"node": ">=18"
|
|
2185
|
-
}
|
|
2186
|
-
},
|
|
2187
|
-
"node_modules/@cucumber/gherkin-utils/node_modules/uuid": {
|
|
2262
|
+
"node_modules/@cucumber/gherkin-utils/node_modules/@cucumber/gherkin/node_modules/uuid": {
|
|
2188
2263
|
"version": "10.0.0",
|
|
2189
2264
|
"resolved": "https://registry.npmjs.org/uuid/-/uuid-10.0.0.tgz",
|
|
2190
2265
|
"integrity": "sha512-8XkAphELsDnEGrDxUOHB3RGvXz6TeuYSGEZBOjtTtPm2lwhGBjLgOzLHB63IUWfBpNucQjND6d3AOudO+H3RWQ==",
|
|
@@ -2197,35 +2272,44 @@
|
|
|
2197
2272
|
"uuid": "dist/bin/uuid"
|
|
2198
2273
|
}
|
|
2199
2274
|
},
|
|
2200
|
-
"node_modules/@cucumber/gherkin/node_modules/@cucumber/messages": {
|
|
2201
|
-
"version": "
|
|
2202
|
-
"resolved": "https://registry.npmjs.org/@cucumber/messages/-/messages-
|
|
2203
|
-
"integrity": "sha512-
|
|
2275
|
+
"node_modules/@cucumber/gherkin-utils/node_modules/@cucumber/messages": {
|
|
2276
|
+
"version": "27.2.0",
|
|
2277
|
+
"resolved": "https://registry.npmjs.org/@cucumber/messages/-/messages-27.2.0.tgz",
|
|
2278
|
+
"integrity": "sha512-f2o/HqKHgsqzFLdq6fAhfG1FNOQPdBdyMGpKwhb7hZqg0yZtx9BVqkTyuoNk83Fcvk3wjMVfouFXXHNEk4nddA==",
|
|
2204
2279
|
"license": "MIT",
|
|
2205
2280
|
"dependencies": {
|
|
2206
2281
|
"@types/uuid": "10.0.0",
|
|
2207
2282
|
"class-transformer": "0.5.1",
|
|
2208
2283
|
"reflect-metadata": "0.2.2",
|
|
2209
|
-
"uuid": "
|
|
2284
|
+
"uuid": "11.0.5"
|
|
2210
2285
|
}
|
|
2211
2286
|
},
|
|
2212
|
-
"node_modules/@cucumber/gherkin/node_modules/
|
|
2213
|
-
"version": "
|
|
2214
|
-
"resolved": "https://registry.npmjs.org/
|
|
2215
|
-
"integrity": "sha512
|
|
2287
|
+
"node_modules/@cucumber/gherkin-utils/node_modules/commander": {
|
|
2288
|
+
"version": "13.1.0",
|
|
2289
|
+
"resolved": "https://registry.npmjs.org/commander/-/commander-13.1.0.tgz",
|
|
2290
|
+
"integrity": "sha512-/rFeCpNJQbhSZjGVwO9RFV3xPqbnERS8MmIQzCtD/zl6gpJuV/bMLuN92oG3F7d8oDEHHRrujSXNUr8fpjntKw==",
|
|
2291
|
+
"license": "MIT",
|
|
2292
|
+
"engines": {
|
|
2293
|
+
"node": ">=18"
|
|
2294
|
+
}
|
|
2295
|
+
},
|
|
2296
|
+
"node_modules/@cucumber/gherkin-utils/node_modules/uuid": {
|
|
2297
|
+
"version": "11.0.5",
|
|
2298
|
+
"resolved": "https://registry.npmjs.org/uuid/-/uuid-11.0.5.tgz",
|
|
2299
|
+
"integrity": "sha512-508e6IcKLrhxKdBbcA2b4KQZlLVp2+J5UwQ6F7Drckkc5N9ZJwFa4TgWtsww9UG8fGHbm6gbV19TdM5pQ4GaIA==",
|
|
2216
2300
|
"funding": [
|
|
2217
2301
|
"https://github.com/sponsors/broofa",
|
|
2218
2302
|
"https://github.com/sponsors/ctavan"
|
|
2219
2303
|
],
|
|
2220
2304
|
"license": "MIT",
|
|
2221
2305
|
"bin": {
|
|
2222
|
-
"uuid": "dist/bin/uuid"
|
|
2306
|
+
"uuid": "dist/esm/bin/uuid"
|
|
2223
2307
|
}
|
|
2224
2308
|
},
|
|
2225
2309
|
"node_modules/@cucumber/html-formatter": {
|
|
2226
|
-
"version": "21.
|
|
2227
|
-
"resolved": "https://registry.npmjs.org/@cucumber/html-formatter/-/html-formatter-21.
|
|
2228
|
-
"integrity": "sha512-
|
|
2310
|
+
"version": "21.14.0",
|
|
2311
|
+
"resolved": "https://registry.npmjs.org/@cucumber/html-formatter/-/html-formatter-21.14.0.tgz",
|
|
2312
|
+
"integrity": "sha512-vQqbmQZc0QiN4c+cMCffCItpODJlOlYtPG7pH6We096dBOa7u0ttDMjT6KrMAnQlcln54rHL46r408IFpuznAw==",
|
|
2229
2313
|
"license": "MIT",
|
|
2230
2314
|
"peerDependencies": {
|
|
2231
2315
|
"@cucumber/messages": ">=18"
|
|
@@ -2256,15 +2340,14 @@
|
|
|
2256
2340
|
}
|
|
2257
2341
|
},
|
|
2258
2342
|
"node_modules/@cucumber/messages": {
|
|
2259
|
-
"version": "
|
|
2260
|
-
"resolved": "https://registry.npmjs.org/@cucumber/messages/-/messages-
|
|
2261
|
-
"integrity": "sha512-
|
|
2343
|
+
"version": "31.0.0",
|
|
2344
|
+
"resolved": "https://registry.npmjs.org/@cucumber/messages/-/messages-31.0.0.tgz",
|
|
2345
|
+
"integrity": "sha512-Dqhatp4AjMsH9SREfWz3Q8nlGuwJMTW7YAW5L3OzRId86ZUEu/a8vIL1RO2c0agQefuBS2SVH9fEZ66ovrMYRA==",
|
|
2262
2346
|
"license": "MIT",
|
|
2347
|
+
"peer": true,
|
|
2263
2348
|
"dependencies": {
|
|
2264
|
-
"@types/uuid": "10.0.0",
|
|
2265
2349
|
"class-transformer": "0.5.1",
|
|
2266
|
-
"reflect-metadata": "0.2.2"
|
|
2267
|
-
"uuid": "11.0.5"
|
|
2350
|
+
"reflect-metadata": "0.2.2"
|
|
2268
2351
|
}
|
|
2269
2352
|
},
|
|
2270
2353
|
"node_modules/@cucumber/query": {
|
|
@@ -2281,9 +2364,9 @@
|
|
|
2281
2364
|
}
|
|
2282
2365
|
},
|
|
2283
2366
|
"node_modules/@cucumber/tag-expressions": {
|
|
2284
|
-
"version": "6.
|
|
2285
|
-
"resolved": "https://registry.npmjs.org/@cucumber/tag-expressions/-/tag-expressions-6.
|
|
2286
|
-
"integrity": "sha512-
|
|
2367
|
+
"version": "6.2.0",
|
|
2368
|
+
"resolved": "https://registry.npmjs.org/@cucumber/tag-expressions/-/tag-expressions-6.2.0.tgz",
|
|
2369
|
+
"integrity": "sha512-KIF0eLcafHbWOuSDWFw0lMmgJOLdDRWjEL1kfXEWrqHmx2119HxVAr35WuEd9z542d3Yyg+XNqSr+81rIKqEdg==",
|
|
2287
2370
|
"license": "MIT"
|
|
2288
2371
|
},
|
|
2289
2372
|
"node_modules/@eslint-community/eslint-utils": {
|
|
@@ -3693,19 +3776,6 @@
|
|
|
3693
3776
|
"node": ">=10"
|
|
3694
3777
|
}
|
|
3695
3778
|
},
|
|
3696
|
-
"node_modules/@reportportal/client-javascript/node_modules/uuid": {
|
|
3697
|
-
"version": "9.0.1",
|
|
3698
|
-
"resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.1.tgz",
|
|
3699
|
-
"integrity": "sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==",
|
|
3700
|
-
"funding": [
|
|
3701
|
-
"https://github.com/sponsors/broofa",
|
|
3702
|
-
"https://github.com/sponsors/ctavan"
|
|
3703
|
-
],
|
|
3704
|
-
"license": "MIT",
|
|
3705
|
-
"bin": {
|
|
3706
|
-
"uuid": "dist/bin/uuid"
|
|
3707
|
-
}
|
|
3708
|
-
},
|
|
3709
3779
|
"node_modules/@sinclair/typebox": {
|
|
3710
3780
|
"version": "0.27.8",
|
|
3711
3781
|
"resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz",
|
|
@@ -4686,9 +4756,9 @@
|
|
|
4686
4756
|
"license": "MIT"
|
|
4687
4757
|
},
|
|
4688
4758
|
"node_modules/baseline-browser-mapping": {
|
|
4689
|
-
"version": "2.
|
|
4690
|
-
"resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.
|
|
4691
|
-
"integrity": "sha512-
|
|
4759
|
+
"version": "2.8.30",
|
|
4760
|
+
"resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.8.30.tgz",
|
|
4761
|
+
"integrity": "sha512-aTUKW4ptQhS64+v2d6IkPzymEzzhw+G0bA1g3uBRV3+ntkH+svttKseW5IOR4Ed6NUVKqnY7qT3dKvzQ7io4AA==",
|
|
4692
4762
|
"license": "Apache-2.0",
|
|
4693
4763
|
"bin": {
|
|
4694
4764
|
"baseline-browser-mapping": "dist/cli.js"
|
|
@@ -4740,9 +4810,9 @@
|
|
|
4740
4810
|
}
|
|
4741
4811
|
},
|
|
4742
4812
|
"node_modules/browserslist": {
|
|
4743
|
-
"version": "4.28.
|
|
4744
|
-
"resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.
|
|
4745
|
-
"integrity": "sha512-
|
|
4813
|
+
"version": "4.28.0",
|
|
4814
|
+
"resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.0.tgz",
|
|
4815
|
+
"integrity": "sha512-tbydkR/CxfMwelN0vwdP/pLkDwyAASZ+VfWm4EOwlB6SWhx1sYnWLqo8N5j0rAzPfzfRaxt0mM/4wPU/Su84RQ==",
|
|
4746
4816
|
"funding": [
|
|
4747
4817
|
{
|
|
4748
4818
|
"type": "opencollective",
|
|
@@ -4759,11 +4829,11 @@
|
|
|
4759
4829
|
],
|
|
4760
4830
|
"license": "MIT",
|
|
4761
4831
|
"dependencies": {
|
|
4762
|
-
"baseline-browser-mapping": "^2.
|
|
4763
|
-
"caniuse-lite": "^1.0.
|
|
4764
|
-
"electron-to-chromium": "^1.5.
|
|
4832
|
+
"baseline-browser-mapping": "^2.8.25",
|
|
4833
|
+
"caniuse-lite": "^1.0.30001754",
|
|
4834
|
+
"electron-to-chromium": "^1.5.249",
|
|
4765
4835
|
"node-releases": "^2.0.27",
|
|
4766
|
-
"update-browserslist-db": "^1.
|
|
4836
|
+
"update-browserslist-db": "^1.1.4"
|
|
4767
4837
|
},
|
|
4768
4838
|
"bin": {
|
|
4769
4839
|
"browserslist": "cli.js"
|
|
@@ -4877,9 +4947,9 @@
|
|
|
4877
4947
|
}
|
|
4878
4948
|
},
|
|
4879
4949
|
"node_modules/caniuse-lite": {
|
|
4880
|
-
"version": "1.0.
|
|
4881
|
-
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.
|
|
4882
|
-
"integrity": "sha512-
|
|
4950
|
+
"version": "1.0.30001756",
|
|
4951
|
+
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001756.tgz",
|
|
4952
|
+
"integrity": "sha512-4HnCNKbMLkLdhJz3TToeVWHSnfJvPaq6vu/eRP0Ahub/07n484XHhBF5AJoSGHdVrS8tKFauUQz8Bp9P7LVx7A==",
|
|
4883
4953
|
"funding": [
|
|
4884
4954
|
{
|
|
4885
4955
|
"type": "opencollective",
|
|
@@ -5570,9 +5640,9 @@
|
|
|
5570
5640
|
"license": "MIT"
|
|
5571
5641
|
},
|
|
5572
5642
|
"node_modules/electron-to-chromium": {
|
|
5573
|
-
"version": "1.5.
|
|
5574
|
-
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.
|
|
5575
|
-
"integrity": "sha512-
|
|
5643
|
+
"version": "1.5.259",
|
|
5644
|
+
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.259.tgz",
|
|
5645
|
+
"integrity": "sha512-I+oLXgpEJzD6Cwuwt1gYjxsDmu/S/Kd41mmLA3O+/uH2pFRO/DvOjUyGozL8j3KeLV6WyZ7ssPwELMsXCcsJAQ==",
|
|
5576
5646
|
"license": "ISC"
|
|
5577
5647
|
},
|
|
5578
5648
|
"node_modules/emittery": {
|
|
@@ -5784,27 +5854,6 @@
|
|
|
5784
5854
|
"url": "https://github.com/sponsors/sindresorhus"
|
|
5785
5855
|
}
|
|
5786
5856
|
},
|
|
5787
|
-
"node_modules/escodegen": {
|
|
5788
|
-
"version": "2.1.0",
|
|
5789
|
-
"resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.1.0.tgz",
|
|
5790
|
-
"integrity": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==",
|
|
5791
|
-
"license": "BSD-2-Clause",
|
|
5792
|
-
"dependencies": {
|
|
5793
|
-
"esprima": "^4.0.1",
|
|
5794
|
-
"estraverse": "^5.2.0",
|
|
5795
|
-
"esutils": "^2.0.2"
|
|
5796
|
-
},
|
|
5797
|
-
"bin": {
|
|
5798
|
-
"escodegen": "bin/escodegen.js",
|
|
5799
|
-
"esgenerate": "bin/esgenerate.js"
|
|
5800
|
-
},
|
|
5801
|
-
"engines": {
|
|
5802
|
-
"node": ">=6.0"
|
|
5803
|
-
},
|
|
5804
|
-
"optionalDependencies": {
|
|
5805
|
-
"source-map": "~0.6.1"
|
|
5806
|
-
}
|
|
5807
|
-
},
|
|
5808
5857
|
"node_modules/eslint": {
|
|
5809
5858
|
"version": "9.39.1",
|
|
5810
5859
|
"resolved": "https://registry.npmjs.org/eslint/-/eslint-9.39.1.tgz",
|
|
@@ -9259,6 +9308,27 @@
|
|
|
9259
9308
|
}
|
|
9260
9309
|
}
|
|
9261
9310
|
},
|
|
9311
|
+
"node_modules/jsdom/node_modules/escodegen": {
|
|
9312
|
+
"version": "2.1.0",
|
|
9313
|
+
"resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.1.0.tgz",
|
|
9314
|
+
"integrity": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==",
|
|
9315
|
+
"license": "BSD-2-Clause",
|
|
9316
|
+
"dependencies": {
|
|
9317
|
+
"esprima": "^4.0.1",
|
|
9318
|
+
"estraverse": "^5.2.0",
|
|
9319
|
+
"esutils": "^2.0.2"
|
|
9320
|
+
},
|
|
9321
|
+
"bin": {
|
|
9322
|
+
"escodegen": "bin/escodegen.js",
|
|
9323
|
+
"esgenerate": "bin/esgenerate.js"
|
|
9324
|
+
},
|
|
9325
|
+
"engines": {
|
|
9326
|
+
"node": ">=6.0"
|
|
9327
|
+
},
|
|
9328
|
+
"optionalDependencies": {
|
|
9329
|
+
"source-map": "~0.6.1"
|
|
9330
|
+
}
|
|
9331
|
+
},
|
|
9262
9332
|
"node_modules/jsesc": {
|
|
9263
9333
|
"version": "3.1.0",
|
|
9264
9334
|
"resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz",
|
|
@@ -9455,9 +9525,9 @@
|
|
|
9455
9525
|
}
|
|
9456
9526
|
},
|
|
9457
9527
|
"node_modules/luxon": {
|
|
9458
|
-
"version": "3.
|
|
9459
|
-
"resolved": "https://registry.npmjs.org/luxon/-/luxon-3.
|
|
9460
|
-
"integrity": "sha512-
|
|
9528
|
+
"version": "3.7.1",
|
|
9529
|
+
"resolved": "https://registry.npmjs.org/luxon/-/luxon-3.7.1.tgz",
|
|
9530
|
+
"integrity": "sha512-RkRWjA926cTvz5rAb1BqyWkKbbjzCGchDUIKMCUvNi17j6f6j8uHGDV82Aqcqtzd+icoYpELmG3ksgGiFNNcNg==",
|
|
9461
9531
|
"license": "MIT",
|
|
9462
9532
|
"engines": {
|
|
9463
9533
|
"node": ">=12"
|
|
@@ -9908,9 +9978,9 @@
|
|
|
9908
9978
|
}
|
|
9909
9979
|
},
|
|
9910
9980
|
"node_modules/nwsapi": {
|
|
9911
|
-
"version": "2.2.
|
|
9912
|
-
"resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.
|
|
9913
|
-
"integrity": "sha512-
|
|
9981
|
+
"version": "2.2.23",
|
|
9982
|
+
"resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.23.tgz",
|
|
9983
|
+
"integrity": "sha512-7wfH4sLbt4M0gCDzGE6vzQBo0bfTKjU7Sfpqy/7gs1qBfYz2vEJH6vXcBKpO3+6Yu1telwd0t9HpyOoLEQQbIQ==",
|
|
9914
9984
|
"license": "MIT"
|
|
9915
9985
|
},
|
|
9916
9986
|
"node_modules/object-assign": {
|
|
@@ -10435,21 +10505,18 @@
|
|
|
10435
10505
|
"@cucumber/messages": ">=19.1.4 <28"
|
|
10436
10506
|
}
|
|
10437
10507
|
},
|
|
10438
|
-
"node_modules/playwright-bdd/node_modules/@cucumber/
|
|
10439
|
-
"version": "
|
|
10440
|
-
"resolved": "https://registry.npmjs.org/@cucumber/
|
|
10441
|
-
"integrity": "sha512-
|
|
10508
|
+
"node_modules/playwright-bdd/node_modules/@cucumber/messages": {
|
|
10509
|
+
"version": "27.2.0",
|
|
10510
|
+
"resolved": "https://registry.npmjs.org/@cucumber/messages/-/messages-27.2.0.tgz",
|
|
10511
|
+
"integrity": "sha512-f2o/HqKHgsqzFLdq6fAhfG1FNOQPdBdyMGpKwhb7hZqg0yZtx9BVqkTyuoNk83Fcvk3wjMVfouFXXHNEk4nddA==",
|
|
10442
10512
|
"license": "MIT",
|
|
10443
|
-
"
|
|
10444
|
-
"@
|
|
10513
|
+
"dependencies": {
|
|
10514
|
+
"@types/uuid": "10.0.0",
|
|
10515
|
+
"class-transformer": "0.5.1",
|
|
10516
|
+
"reflect-metadata": "0.2.2",
|
|
10517
|
+
"uuid": "11.0.5"
|
|
10445
10518
|
}
|
|
10446
10519
|
},
|
|
10447
|
-
"node_modules/playwright-bdd/node_modules/@cucumber/tag-expressions": {
|
|
10448
|
-
"version": "6.2.0",
|
|
10449
|
-
"resolved": "https://registry.npmjs.org/@cucumber/tag-expressions/-/tag-expressions-6.2.0.tgz",
|
|
10450
|
-
"integrity": "sha512-KIF0eLcafHbWOuSDWFw0lMmgJOLdDRWjEL1kfXEWrqHmx2119HxVAr35WuEd9z542d3Yyg+XNqSr+81rIKqEdg==",
|
|
10451
|
-
"license": "MIT"
|
|
10452
|
-
},
|
|
10453
10520
|
"node_modules/playwright-bdd/node_modules/commander": {
|
|
10454
10521
|
"version": "13.1.0",
|
|
10455
10522
|
"resolved": "https://registry.npmjs.org/commander/-/commander-13.1.0.tgz",
|
|
@@ -10500,6 +10567,19 @@
|
|
|
10500
10567
|
"url": "https://opencollective.com/express"
|
|
10501
10568
|
}
|
|
10502
10569
|
},
|
|
10570
|
+
"node_modules/playwright-bdd/node_modules/uuid": {
|
|
10571
|
+
"version": "11.0.5",
|
|
10572
|
+
"resolved": "https://registry.npmjs.org/uuid/-/uuid-11.0.5.tgz",
|
|
10573
|
+
"integrity": "sha512-508e6IcKLrhxKdBbcA2b4KQZlLVp2+J5UwQ6F7Drckkc5N9ZJwFa4TgWtsww9UG8fGHbm6gbV19TdM5pQ4GaIA==",
|
|
10574
|
+
"funding": [
|
|
10575
|
+
"https://github.com/sponsors/broofa",
|
|
10576
|
+
"https://github.com/sponsors/ctavan"
|
|
10577
|
+
],
|
|
10578
|
+
"license": "MIT",
|
|
10579
|
+
"bin": {
|
|
10580
|
+
"uuid": "dist/esm/bin/uuid"
|
|
10581
|
+
}
|
|
10582
|
+
},
|
|
10503
10583
|
"node_modules/playwright-core": {
|
|
10504
10584
|
"version": "1.53.2",
|
|
10505
10585
|
"resolved": "https://registry.npmjs.org/playwright-core/-/playwright-core-1.53.2.tgz",
|
|
@@ -12106,9 +12186,9 @@
|
|
|
12106
12186
|
}
|
|
12107
12187
|
},
|
|
12108
12188
|
"node_modules/update-browserslist-db": {
|
|
12109
|
-
"version": "1.
|
|
12110
|
-
"resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.
|
|
12111
|
-
"integrity": "sha512-
|
|
12189
|
+
"version": "1.1.4",
|
|
12190
|
+
"resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.4.tgz",
|
|
12191
|
+
"integrity": "sha512-q0SPT4xyU84saUX+tomz1WLkxUbuaJnR1xWt17M7fJtEJigJeWUNGUqrauFXsHnqev9y9JTRGwk13tFBuKby4A==",
|
|
12112
12192
|
"funding": [
|
|
12113
12193
|
{
|
|
12114
12194
|
"type": "opencollective",
|
|
@@ -12190,16 +12270,16 @@
|
|
|
12190
12270
|
"license": "MIT"
|
|
12191
12271
|
},
|
|
12192
12272
|
"node_modules/uuid": {
|
|
12193
|
-
"version": "
|
|
12194
|
-
"resolved": "https://registry.npmjs.org/uuid/-/uuid-
|
|
12195
|
-
"integrity": "sha512-
|
|
12273
|
+
"version": "9.0.1",
|
|
12274
|
+
"resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.1.tgz",
|
|
12275
|
+
"integrity": "sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==",
|
|
12196
12276
|
"funding": [
|
|
12197
12277
|
"https://github.com/sponsors/broofa",
|
|
12198
12278
|
"https://github.com/sponsors/ctavan"
|
|
12199
12279
|
],
|
|
12200
12280
|
"license": "MIT",
|
|
12201
12281
|
"bin": {
|
|
12202
|
-
"uuid": "dist/
|
|
12282
|
+
"uuid": "dist/bin/uuid"
|
|
12203
12283
|
}
|
|
12204
12284
|
},
|
|
12205
12285
|
"node_modules/v8-to-istanbul": {
|
|
@@ -12567,18 +12647,15 @@
|
|
|
12567
12647
|
"license": "ISC"
|
|
12568
12648
|
},
|
|
12569
12649
|
"node_modules/yaml": {
|
|
12570
|
-
"version": "2.8.
|
|
12571
|
-
"resolved": "https://registry.npmjs.org/yaml/-/yaml-2.8.
|
|
12572
|
-
"integrity": "sha512-
|
|
12650
|
+
"version": "2.8.1",
|
|
12651
|
+
"resolved": "https://registry.npmjs.org/yaml/-/yaml-2.8.1.tgz",
|
|
12652
|
+
"integrity": "sha512-lcYcMxX2PO9XMGvAJkJ3OsNMw+/7FKes7/hgerGUYWIoWu5j/+YQqcZr5JnPZWzOsEBgMbSbiSTn/dv/69Mkpw==",
|
|
12573
12653
|
"license": "ISC",
|
|
12574
12654
|
"bin": {
|
|
12575
12655
|
"yaml": "bin.mjs"
|
|
12576
12656
|
},
|
|
12577
12657
|
"engines": {
|
|
12578
12658
|
"node": ">= 14.6"
|
|
12579
|
-
},
|
|
12580
|
-
"funding": {
|
|
12581
|
-
"url": "https://github.com/sponsors/eemeli"
|
|
12582
12659
|
}
|
|
12583
12660
|
},
|
|
12584
12661
|
"node_modules/yargs": {
|