@zohodesk/testinglibrary 0.4.79-n18-experimental → 0.4.80-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/build/common/searchFake/helpers/rpcRequestHelper.js +37 -0
- package/build/common/searchFake/steps/searchFake.spec.js +30 -0
- package/build/core/playwright/setup/config-creator.js +3 -2
- package/build/core/playwright/setup/config-utils.js +2 -3
- package/npm-shrinkwrap.json +176 -202
- package/package.json +1 -1
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _testinglibrary = require("@zohodesk/testinglibrary");
|
|
4
|
+
async function executeRpcRequest(page, payload) {
|
|
5
|
+
const url = new URL(page.url());
|
|
6
|
+
const baseUrl = `${url.protocol}//${url.host}`;
|
|
7
|
+
const invokeURL = `${baseUrl}/api/testing/acceptanceTest/rpc/invoke`;
|
|
8
|
+
try {
|
|
9
|
+
const response = await page.request.post(invokeURL, {
|
|
10
|
+
headers: {
|
|
11
|
+
'Content-Type': 'application/json'
|
|
12
|
+
},
|
|
13
|
+
data: payload
|
|
14
|
+
});
|
|
15
|
+
if (!response.ok()) {
|
|
16
|
+
throw new Error(`HTTP ${response.status()}: ${response.statusText()}`);
|
|
17
|
+
}
|
|
18
|
+
const responseData = await response.json();
|
|
19
|
+
(0, _testinglibrary.expect)(responseData.data).toHaveProperty('status', 'success');
|
|
20
|
+
} catch (error) {
|
|
21
|
+
throw error;
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
async function entityIdReConstructor(payload) {
|
|
25
|
+
if (typeof payload !== 'object' || payload === null) {
|
|
26
|
+
throw new Error('Invalid payload. It must be a non-null object.');
|
|
27
|
+
}
|
|
28
|
+
if (!payload.arguments || typeof payload.arguments.entityId !== 'string') {
|
|
29
|
+
throw new Error('Invalid payload.arguments.entityId. It must be a non-empty string.');
|
|
30
|
+
}
|
|
31
|
+
payload.arguments.entityId = payload.arguments.entityId.split(',').map(id => id.trim());
|
|
32
|
+
return payload;
|
|
33
|
+
}
|
|
34
|
+
module.exports = {
|
|
35
|
+
executeRpcRequest,
|
|
36
|
+
entityIdReConstructor
|
|
37
|
+
};
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _testinglibrary = require("@zohodesk/testinglibrary");
|
|
4
|
+
var _rpcRequestHelper = require("../helpers/rpcRequestHelper");
|
|
5
|
+
const {
|
|
6
|
+
Given
|
|
7
|
+
} = (0, _testinglibrary.createBdd)();
|
|
8
|
+
Given('a search entity', async ({
|
|
9
|
+
page
|
|
10
|
+
}, dataTable) => {
|
|
11
|
+
const data = dataTable.hashes();
|
|
12
|
+
for (const row of data) {
|
|
13
|
+
const {
|
|
14
|
+
moduleName,
|
|
15
|
+
entityId,
|
|
16
|
+
searchString
|
|
17
|
+
} = row;
|
|
18
|
+
const payload = {
|
|
19
|
+
className: 'applicationDriver.rpc.desk.integrations.search.SearchFakeDataPopulator',
|
|
20
|
+
methodName: 'populateSearchData',
|
|
21
|
+
arguments: {
|
|
22
|
+
module: moduleName,
|
|
23
|
+
searchString: searchString,
|
|
24
|
+
entityId: entityId
|
|
25
|
+
}
|
|
26
|
+
};
|
|
27
|
+
await (0, _rpcRequestHelper.entityIdReConstructor)(payload);
|
|
28
|
+
await (0, _rpcRequestHelper.executeRpcRequest)(page, payload);
|
|
29
|
+
}
|
|
30
|
+
});
|
|
@@ -75,7 +75,7 @@ function getPlaywrightConfig() {
|
|
|
75
75
|
function smokeTestConfig() {
|
|
76
76
|
const smokeTestDir = (0, _configUtils.getTestDir)(bddMode, {
|
|
77
77
|
featureFilesFolder: _path.default.join(process.cwd(), 'uat', 'smokeTest', '**', '*.feature'),
|
|
78
|
-
stepDefinitionsFolder: _path.default.join(process.cwd(), 'uat', '
|
|
78
|
+
stepDefinitionsFolder: _path.default.join(process.cwd(), 'uat', '**', 'steps', '*.spec.js'),
|
|
79
79
|
outputDir: _path.default.join(process.cwd(), 'uat', '.features-smoke-gen'),
|
|
80
80
|
uatPath: _path.default.join(process.cwd(), 'uat', 'smokeTest')
|
|
81
81
|
});
|
|
@@ -85,7 +85,8 @@ function getPlaywrightConfig() {
|
|
|
85
85
|
use: {
|
|
86
86
|
...commonConfig
|
|
87
87
|
},
|
|
88
|
-
dependencies: dependencies
|
|
88
|
+
dependencies: dependencies,
|
|
89
|
+
retries: 0
|
|
89
90
|
}];
|
|
90
91
|
}
|
|
91
92
|
const playwrightConfig = {
|
|
@@ -153,7 +153,7 @@ function getPathsForFeatureFiles(cwd) {
|
|
|
153
153
|
let moduleList = modules.split(',');
|
|
154
154
|
return getModulePathForFeatureFiles(moduleList);
|
|
155
155
|
}
|
|
156
|
-
return [_path.default.join(cwd, 'uat', '**', '*.feature')];
|
|
156
|
+
return [_path.default.join(cwd, 'uat', 'modules', '**', '*.feature')];
|
|
157
157
|
}
|
|
158
158
|
function getModulePathForFeatureFiles(moduleList) {
|
|
159
159
|
let validModuleList = [];
|
|
@@ -162,9 +162,8 @@ function getModulePathForFeatureFiles(moduleList) {
|
|
|
162
162
|
if ((0, _fileUtils.checkIfFolderExistsWithPattern)(modulePath)) {
|
|
163
163
|
validModuleList.push(_path.default.join(modulePath, '**', '*.feature'));
|
|
164
164
|
} else {
|
|
165
|
-
_logger.Logger.log(_logger.Logger.FAILURE_TYPE, `Module ${moduleName} does not exist, Please check the module name`);
|
|
166
165
|
validModuleList = [];
|
|
167
|
-
|
|
166
|
+
throw new Error(`Module ${moduleName} does not exist. We have not triggered the execution for this module`);
|
|
168
167
|
}
|
|
169
168
|
});
|
|
170
169
|
return validModuleList;
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zohodesk/testinglibrary",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.80-n18-experimental",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@zohodesk/testinglibrary",
|
|
9
|
-
"version": "0.4.
|
|
9
|
+
"version": "0.4.80-n18-experimental",
|
|
10
10
|
"hasInstallScript": true,
|
|
11
11
|
"license": "ISC",
|
|
12
12
|
"dependencies": {
|
|
@@ -101,13 +101,6 @@
|
|
|
101
101
|
"node": ">= 6"
|
|
102
102
|
}
|
|
103
103
|
},
|
|
104
|
-
"node_modules/@babel/cli/node_modules/convert-source-map": {
|
|
105
|
-
"version": "1.9.0",
|
|
106
|
-
"resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz",
|
|
107
|
-
"integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==",
|
|
108
|
-
"dev": true,
|
|
109
|
-
"license": "MIT"
|
|
110
|
-
},
|
|
111
104
|
"node_modules/@babel/code-frame": {
|
|
112
105
|
"version": "7.27.1",
|
|
113
106
|
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.27.1.tgz",
|
|
@@ -161,12 +154,6 @@
|
|
|
161
154
|
"url": "https://opencollective.com/babel"
|
|
162
155
|
}
|
|
163
156
|
},
|
|
164
|
-
"node_modules/@babel/core/node_modules/convert-source-map": {
|
|
165
|
-
"version": "1.9.0",
|
|
166
|
-
"resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz",
|
|
167
|
-
"integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==",
|
|
168
|
-
"license": "MIT"
|
|
169
|
-
},
|
|
170
157
|
"node_modules/@babel/generator": {
|
|
171
158
|
"version": "7.28.0",
|
|
172
159
|
"resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.28.0.tgz",
|
|
@@ -2049,42 +2036,6 @@
|
|
|
2049
2036
|
"regexp-match-indices": "1.0.2"
|
|
2050
2037
|
}
|
|
2051
2038
|
},
|
|
2052
|
-
"node_modules/@cucumber/cucumber/node_modules/@cucumber/gherkin": {
|
|
2053
|
-
"version": "30.0.4",
|
|
2054
|
-
"resolved": "https://registry.npmjs.org/@cucumber/gherkin/-/gherkin-30.0.4.tgz",
|
|
2055
|
-
"integrity": "sha512-pb7lmAJqweZRADTTsgnC3F5zbTh3nwOB1M83Q9ZPbUKMb3P76PzK6cTcPTJBHWy3l7isbigIv+BkDjaca6C8/g==",
|
|
2056
|
-
"license": "MIT",
|
|
2057
|
-
"dependencies": {
|
|
2058
|
-
"@cucumber/messages": ">=19.1.4 <=26"
|
|
2059
|
-
}
|
|
2060
|
-
},
|
|
2061
|
-
"node_modules/@cucumber/cucumber/node_modules/@cucumber/gherkin/node_modules/@cucumber/messages": {
|
|
2062
|
-
"version": "26.0.1",
|
|
2063
|
-
"resolved": "https://registry.npmjs.org/@cucumber/messages/-/messages-26.0.1.tgz",
|
|
2064
|
-
"integrity": "sha512-DIxSg+ZGariumO+Lq6bn4kOUIUET83A4umrnWmidjGFl8XxkBieUZtsmNbLYgH/gnsmP07EfxxdTr0hOchV1Sg==",
|
|
2065
|
-
"license": "MIT",
|
|
2066
|
-
"dependencies": {
|
|
2067
|
-
"@types/uuid": "10.0.0",
|
|
2068
|
-
"class-transformer": "0.5.1",
|
|
2069
|
-
"reflect-metadata": "0.2.2",
|
|
2070
|
-
"uuid": "10.0.0"
|
|
2071
|
-
}
|
|
2072
|
-
},
|
|
2073
|
-
"node_modules/@cucumber/cucumber/node_modules/@cucumber/html-formatter": {
|
|
2074
|
-
"version": "21.10.1",
|
|
2075
|
-
"resolved": "https://registry.npmjs.org/@cucumber/html-formatter/-/html-formatter-21.10.1.tgz",
|
|
2076
|
-
"integrity": "sha512-isaaNMNnBYThsvaHy7i+9kkk9V3+rhgdkt0pd6TCY6zY1CSRZQ7tG6ST9pYyRaECyfbCeF7UGH0KpNEnh6UNvQ==",
|
|
2077
|
-
"license": "MIT",
|
|
2078
|
-
"peerDependencies": {
|
|
2079
|
-
"@cucumber/messages": ">=18"
|
|
2080
|
-
}
|
|
2081
|
-
},
|
|
2082
|
-
"node_modules/@cucumber/cucumber/node_modules/@cucumber/tag-expressions": {
|
|
2083
|
-
"version": "6.1.2",
|
|
2084
|
-
"resolved": "https://registry.npmjs.org/@cucumber/tag-expressions/-/tag-expressions-6.1.2.tgz",
|
|
2085
|
-
"integrity": "sha512-xa3pER+ntZhGCxRXSguDTKEHTZpUUsp+RzTRNnit+vi5cqnk6abLdSLg5i3HZXU3c74nQ8afQC6IT507EN74oQ==",
|
|
2086
|
-
"license": "MIT"
|
|
2087
|
-
},
|
|
2088
2039
|
"node_modules/@cucumber/cucumber/node_modules/brace-expansion": {
|
|
2089
2040
|
"version": "2.0.2",
|
|
2090
2041
|
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz",
|
|
@@ -2150,26 +2101,13 @@
|
|
|
2150
2101
|
"node": ">=10"
|
|
2151
2102
|
}
|
|
2152
2103
|
},
|
|
2153
|
-
"node_modules/@cucumber/cucumber/node_modules/uuid": {
|
|
2154
|
-
"version": "10.0.0",
|
|
2155
|
-
"resolved": "https://registry.npmjs.org/uuid/-/uuid-10.0.0.tgz",
|
|
2156
|
-
"integrity": "sha512-8XkAphELsDnEGrDxUOHB3RGvXz6TeuYSGEZBOjtTtPm2lwhGBjLgOzLHB63IUWfBpNucQjND6d3AOudO+H3RWQ==",
|
|
2157
|
-
"funding": [
|
|
2158
|
-
"https://github.com/sponsors/broofa",
|
|
2159
|
-
"https://github.com/sponsors/ctavan"
|
|
2160
|
-
],
|
|
2161
|
-
"license": "MIT",
|
|
2162
|
-
"bin": {
|
|
2163
|
-
"uuid": "dist/bin/uuid"
|
|
2164
|
-
}
|
|
2165
|
-
},
|
|
2166
2104
|
"node_modules/@cucumber/gherkin": {
|
|
2167
|
-
"version": "
|
|
2168
|
-
"resolved": "https://registry.npmjs.org/@cucumber/gherkin/-/gherkin-
|
|
2169
|
-
"integrity": "sha512-
|
|
2105
|
+
"version": "30.0.4",
|
|
2106
|
+
"resolved": "https://registry.npmjs.org/@cucumber/gherkin/-/gherkin-30.0.4.tgz",
|
|
2107
|
+
"integrity": "sha512-pb7lmAJqweZRADTTsgnC3F5zbTh3nwOB1M83Q9ZPbUKMb3P76PzK6cTcPTJBHWy3l7isbigIv+BkDjaca6C8/g==",
|
|
2170
2108
|
"license": "MIT",
|
|
2171
2109
|
"dependencies": {
|
|
2172
|
-
"@cucumber/messages": ">=19.1.4
|
|
2110
|
+
"@cucumber/messages": ">=19.1.4 <=26"
|
|
2173
2111
|
}
|
|
2174
2112
|
},
|
|
2175
2113
|
"node_modules/@cucumber/gherkin-streams": {
|
|
@@ -2258,10 +2196,35 @@
|
|
|
2258
2196
|
"uuid": "dist/bin/uuid"
|
|
2259
2197
|
}
|
|
2260
2198
|
},
|
|
2199
|
+
"node_modules/@cucumber/gherkin/node_modules/@cucumber/messages": {
|
|
2200
|
+
"version": "26.0.1",
|
|
2201
|
+
"resolved": "https://registry.npmjs.org/@cucumber/messages/-/messages-26.0.1.tgz",
|
|
2202
|
+
"integrity": "sha512-DIxSg+ZGariumO+Lq6bn4kOUIUET83A4umrnWmidjGFl8XxkBieUZtsmNbLYgH/gnsmP07EfxxdTr0hOchV1Sg==",
|
|
2203
|
+
"license": "MIT",
|
|
2204
|
+
"dependencies": {
|
|
2205
|
+
"@types/uuid": "10.0.0",
|
|
2206
|
+
"class-transformer": "0.5.1",
|
|
2207
|
+
"reflect-metadata": "0.2.2",
|
|
2208
|
+
"uuid": "10.0.0"
|
|
2209
|
+
}
|
|
2210
|
+
},
|
|
2211
|
+
"node_modules/@cucumber/gherkin/node_modules/uuid": {
|
|
2212
|
+
"version": "10.0.0",
|
|
2213
|
+
"resolved": "https://registry.npmjs.org/uuid/-/uuid-10.0.0.tgz",
|
|
2214
|
+
"integrity": "sha512-8XkAphELsDnEGrDxUOHB3RGvXz6TeuYSGEZBOjtTtPm2lwhGBjLgOzLHB63IUWfBpNucQjND6d3AOudO+H3RWQ==",
|
|
2215
|
+
"funding": [
|
|
2216
|
+
"https://github.com/sponsors/broofa",
|
|
2217
|
+
"https://github.com/sponsors/ctavan"
|
|
2218
|
+
],
|
|
2219
|
+
"license": "MIT",
|
|
2220
|
+
"bin": {
|
|
2221
|
+
"uuid": "dist/bin/uuid"
|
|
2222
|
+
}
|
|
2223
|
+
},
|
|
2261
2224
|
"node_modules/@cucumber/html-formatter": {
|
|
2262
|
-
"version": "21.
|
|
2263
|
-
"resolved": "https://registry.npmjs.org/@cucumber/html-formatter/-/html-formatter-21.
|
|
2264
|
-
"integrity": "sha512
|
|
2225
|
+
"version": "21.10.1",
|
|
2226
|
+
"resolved": "https://registry.npmjs.org/@cucumber/html-formatter/-/html-formatter-21.10.1.tgz",
|
|
2227
|
+
"integrity": "sha512-isaaNMNnBYThsvaHy7i+9kkk9V3+rhgdkt0pd6TCY6zY1CSRZQ7tG6ST9pYyRaECyfbCeF7UGH0KpNEnh6UNvQ==",
|
|
2265
2228
|
"license": "MIT",
|
|
2266
2229
|
"peerDependencies": {
|
|
2267
2230
|
"@cucumber/messages": ">=18"
|
|
@@ -2317,9 +2280,9 @@
|
|
|
2317
2280
|
}
|
|
2318
2281
|
},
|
|
2319
2282
|
"node_modules/@cucumber/tag-expressions": {
|
|
2320
|
-
"version": "6.2
|
|
2321
|
-
"resolved": "https://registry.npmjs.org/@cucumber/tag-expressions/-/tag-expressions-6.2.
|
|
2322
|
-
"integrity": "sha512-
|
|
2283
|
+
"version": "6.1.2",
|
|
2284
|
+
"resolved": "https://registry.npmjs.org/@cucumber/tag-expressions/-/tag-expressions-6.1.2.tgz",
|
|
2285
|
+
"integrity": "sha512-xa3pER+ntZhGCxRXSguDTKEHTZpUUsp+RzTRNnit+vi5cqnk6abLdSLg5i3HZXU3c74nQ8afQC6IT507EN74oQ==",
|
|
2323
2286
|
"license": "MIT"
|
|
2324
2287
|
},
|
|
2325
2288
|
"node_modules/@eslint-community/eslint-utils": {
|
|
@@ -2380,9 +2343,9 @@
|
|
|
2380
2343
|
}
|
|
2381
2344
|
},
|
|
2382
2345
|
"node_modules/@eslint/config-helpers": {
|
|
2383
|
-
"version": "0.3.
|
|
2384
|
-
"resolved": "https://registry.npmjs.org/@eslint/config-helpers/-/config-helpers-0.3.
|
|
2385
|
-
"integrity": "sha512-
|
|
2346
|
+
"version": "0.3.1",
|
|
2347
|
+
"resolved": "https://registry.npmjs.org/@eslint/config-helpers/-/config-helpers-0.3.1.tgz",
|
|
2348
|
+
"integrity": "sha512-xR93k9WhrDYpXHORXpxVL5oHj3Era7wo6k/Wd8/IsQNnZUTzkGS29lyn3nAT05v6ltUuTFVCCYDEGfy2Or/sPA==",
|
|
2386
2349
|
"license": "Apache-2.0",
|
|
2387
2350
|
"peer": true,
|
|
2388
2351
|
"engines": {
|
|
@@ -2390,9 +2353,9 @@
|
|
|
2390
2353
|
}
|
|
2391
2354
|
},
|
|
2392
2355
|
"node_modules/@eslint/core": {
|
|
2393
|
-
"version": "0.15.
|
|
2394
|
-
"resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.15.
|
|
2395
|
-
"integrity": "sha512-
|
|
2356
|
+
"version": "0.15.2",
|
|
2357
|
+
"resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.15.2.tgz",
|
|
2358
|
+
"integrity": "sha512-78Md3/Rrxh83gCxoUc0EiciuOHsIITzLy53m3d9UyiW8y9Dj2D29FeETqyKA+BRK76tnTp6RXWb3pCay8Oyomg==",
|
|
2396
2359
|
"license": "Apache-2.0",
|
|
2397
2360
|
"peer": true,
|
|
2398
2361
|
"dependencies": {
|
|
@@ -2447,9 +2410,9 @@
|
|
|
2447
2410
|
}
|
|
2448
2411
|
},
|
|
2449
2412
|
"node_modules/@eslint/js": {
|
|
2450
|
-
"version": "9.
|
|
2451
|
-
"resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.
|
|
2452
|
-
"integrity": "sha512-
|
|
2413
|
+
"version": "9.33.0",
|
|
2414
|
+
"resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.33.0.tgz",
|
|
2415
|
+
"integrity": "sha512-5K1/mKhWaMfreBGJTwval43JJmkip0RmM+3+IuqupeSKNC/Th2Kc7ucaq5ovTSra/OOKB9c58CGSz3QMVbWt0A==",
|
|
2453
2416
|
"license": "MIT",
|
|
2454
2417
|
"peer": true,
|
|
2455
2418
|
"engines": {
|
|
@@ -2470,13 +2433,13 @@
|
|
|
2470
2433
|
}
|
|
2471
2434
|
},
|
|
2472
2435
|
"node_modules/@eslint/plugin-kit": {
|
|
2473
|
-
"version": "0.3.
|
|
2474
|
-
"resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.3.
|
|
2475
|
-
"integrity": "sha512-
|
|
2436
|
+
"version": "0.3.5",
|
|
2437
|
+
"resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.3.5.tgz",
|
|
2438
|
+
"integrity": "sha512-Z5kJ+wU3oA7MMIqVR9tyZRtjYPr4OC004Q4Rw7pgOKUOKkJfZ3O24nz3WYfGRpMDNmcOi3TwQOmgm7B7Tpii0w==",
|
|
2476
2439
|
"license": "Apache-2.0",
|
|
2477
2440
|
"peer": true,
|
|
2478
2441
|
"dependencies": {
|
|
2479
|
-
"@eslint/core": "^0.15.
|
|
2442
|
+
"@eslint/core": "^0.15.2",
|
|
2480
2443
|
"levn": "^0.4.1"
|
|
2481
2444
|
},
|
|
2482
2445
|
"engines": {
|
|
@@ -2549,6 +2512,22 @@
|
|
|
2549
2512
|
"url": "https://github.com/sponsors/nzakas"
|
|
2550
2513
|
}
|
|
2551
2514
|
},
|
|
2515
|
+
"node_modules/@inquirer/external-editor": {
|
|
2516
|
+
"version": "1.0.0",
|
|
2517
|
+
"resolved": "https://registry.npmjs.org/@inquirer/external-editor/-/external-editor-1.0.0.tgz",
|
|
2518
|
+
"integrity": "sha512-5v3YXc5ZMfL6OJqXPrX9csb4l7NlQA2doO1yynUjpUChT9hg4JcuBVP0RbsEJ/3SL/sxWEyFjT2W69ZhtoBWqg==",
|
|
2519
|
+
"license": "MIT",
|
|
2520
|
+
"dependencies": {
|
|
2521
|
+
"chardet": "^2.1.0",
|
|
2522
|
+
"iconv-lite": "^0.6.3"
|
|
2523
|
+
},
|
|
2524
|
+
"engines": {
|
|
2525
|
+
"node": ">=18"
|
|
2526
|
+
},
|
|
2527
|
+
"peerDependencies": {
|
|
2528
|
+
"@types/node": ">=18"
|
|
2529
|
+
}
|
|
2530
|
+
},
|
|
2552
2531
|
"node_modules/@isaacs/cliui": {
|
|
2553
2532
|
"version": "8.0.2",
|
|
2554
2533
|
"resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz",
|
|
@@ -3275,6 +3254,12 @@
|
|
|
3275
3254
|
"url": "https://github.com/chalk/ansi-styles?sponsor=1"
|
|
3276
3255
|
}
|
|
3277
3256
|
},
|
|
3257
|
+
"node_modules/@jest/reporters/node_modules/convert-source-map": {
|
|
3258
|
+
"version": "2.0.0",
|
|
3259
|
+
"resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz",
|
|
3260
|
+
"integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==",
|
|
3261
|
+
"license": "MIT"
|
|
3262
|
+
},
|
|
3278
3263
|
"node_modules/@jest/reporters/node_modules/istanbul-lib-instrument": {
|
|
3279
3264
|
"version": "6.0.3",
|
|
3280
3265
|
"resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.3.tgz",
|
|
@@ -3443,6 +3428,12 @@
|
|
|
3443
3428
|
"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
|
|
3444
3429
|
}
|
|
3445
3430
|
},
|
|
3431
|
+
"node_modules/@jest/transform/node_modules/convert-source-map": {
|
|
3432
|
+
"version": "2.0.0",
|
|
3433
|
+
"resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz",
|
|
3434
|
+
"integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==",
|
|
3435
|
+
"license": "MIT"
|
|
3436
|
+
},
|
|
3446
3437
|
"node_modules/@jest/transform/node_modules/slash": {
|
|
3447
3438
|
"version": "3.0.0",
|
|
3448
3439
|
"resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
|
|
@@ -4056,12 +4047,12 @@
|
|
|
4056
4047
|
"license": "MIT"
|
|
4057
4048
|
},
|
|
4058
4049
|
"node_modules/@types/node": {
|
|
4059
|
-
"version": "24.1
|
|
4060
|
-
"resolved": "https://registry.npmjs.org/@types/node/-/node-24.1.
|
|
4061
|
-
"integrity": "sha512-
|
|
4050
|
+
"version": "24.2.1",
|
|
4051
|
+
"resolved": "https://registry.npmjs.org/@types/node/-/node-24.2.1.tgz",
|
|
4052
|
+
"integrity": "sha512-DRh5K+ka5eJic8CjH7td8QpYEV6Zo10gfRkjHCO3weqZHWDtAaSTFtl4+VMqOJ4N5jcuhZ9/l+yy8rVgw7BQeQ==",
|
|
4062
4053
|
"license": "MIT",
|
|
4063
4054
|
"dependencies": {
|
|
4064
|
-
"undici-types": "~7.
|
|
4055
|
+
"undici-types": "~7.10.0"
|
|
4065
4056
|
}
|
|
4066
4057
|
},
|
|
4067
4058
|
"node_modules/@types/normalize-package-data": {
|
|
@@ -4735,9 +4726,9 @@
|
|
|
4735
4726
|
}
|
|
4736
4727
|
},
|
|
4737
4728
|
"node_modules/browserslist": {
|
|
4738
|
-
"version": "4.25.
|
|
4739
|
-
"resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.25.
|
|
4740
|
-
"integrity": "sha512-
|
|
4729
|
+
"version": "4.25.2",
|
|
4730
|
+
"resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.25.2.tgz",
|
|
4731
|
+
"integrity": "sha512-0si2SJK3ooGzIawRu61ZdPCO1IncZwS8IzuX73sPZsXW6EQ/w/DAfPyKI8l1ETTCr2MnvqWitmlCUxgdul45jA==",
|
|
4741
4732
|
"funding": [
|
|
4742
4733
|
{
|
|
4743
4734
|
"type": "opencollective",
|
|
@@ -4754,8 +4745,8 @@
|
|
|
4754
4745
|
],
|
|
4755
4746
|
"license": "MIT",
|
|
4756
4747
|
"dependencies": {
|
|
4757
|
-
"caniuse-lite": "^1.0.
|
|
4758
|
-
"electron-to-chromium": "^1.5.
|
|
4748
|
+
"caniuse-lite": "^1.0.30001733",
|
|
4749
|
+
"electron-to-chromium": "^1.5.199",
|
|
4759
4750
|
"node-releases": "^2.0.19",
|
|
4760
4751
|
"update-browserslist-db": "^1.1.3"
|
|
4761
4752
|
},
|
|
@@ -4871,9 +4862,9 @@
|
|
|
4871
4862
|
}
|
|
4872
4863
|
},
|
|
4873
4864
|
"node_modules/caniuse-lite": {
|
|
4874
|
-
"version": "1.0.
|
|
4875
|
-
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.
|
|
4876
|
-
"integrity": "sha512-
|
|
4865
|
+
"version": "1.0.30001734",
|
|
4866
|
+
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001734.tgz",
|
|
4867
|
+
"integrity": "sha512-uhE1Ye5vgqju6OI71HTQqcBCZrvHugk0MjLak7Q+HfoBgoq5Bi+5YnwjP4fjDgrtYr/l8MVRBvzz9dPD4KyK0A==",
|
|
4877
4868
|
"funding": [
|
|
4878
4869
|
{
|
|
4879
4870
|
"type": "opencollective",
|
|
@@ -4939,9 +4930,9 @@
|
|
|
4939
4930
|
}
|
|
4940
4931
|
},
|
|
4941
4932
|
"node_modules/chardet": {
|
|
4942
|
-
"version": "
|
|
4943
|
-
"resolved": "https://registry.npmjs.org/chardet/-/chardet-
|
|
4944
|
-
"integrity": "sha512-
|
|
4933
|
+
"version": "2.1.0",
|
|
4934
|
+
"resolved": "https://registry.npmjs.org/chardet/-/chardet-2.1.0.tgz",
|
|
4935
|
+
"integrity": "sha512-bNFETTG/pM5ryzQ9Ad0lJOTa6HWD/YsScAR3EnCPZRPlQh77JocYktSHOUHelyhm8IARL+o4c4F1bP5KVOjiRA==",
|
|
4945
4936
|
"license": "MIT"
|
|
4946
4937
|
},
|
|
4947
4938
|
"node_modules/chokidar": {
|
|
@@ -5168,9 +5159,9 @@
|
|
|
5168
5159
|
"license": "MIT"
|
|
5169
5160
|
},
|
|
5170
5161
|
"node_modules/convert-source-map": {
|
|
5171
|
-
"version": "
|
|
5172
|
-
"resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-
|
|
5173
|
-
"integrity": "sha512-
|
|
5162
|
+
"version": "1.9.0",
|
|
5163
|
+
"resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz",
|
|
5164
|
+
"integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==",
|
|
5174
5165
|
"license": "MIT"
|
|
5175
5166
|
},
|
|
5176
5167
|
"node_modules/cookie": {
|
|
@@ -5183,9 +5174,9 @@
|
|
|
5183
5174
|
}
|
|
5184
5175
|
},
|
|
5185
5176
|
"node_modules/core-js": {
|
|
5186
|
-
"version": "3.
|
|
5187
|
-
"resolved": "https://registry.npmjs.org/core-js/-/core-js-3.
|
|
5188
|
-
"integrity": "sha512-
|
|
5177
|
+
"version": "3.45.0",
|
|
5178
|
+
"resolved": "https://registry.npmjs.org/core-js/-/core-js-3.45.0.tgz",
|
|
5179
|
+
"integrity": "sha512-c2KZL9lP4DjkN3hk/an4pWn5b5ZefhRJnAc42n6LJ19kSnbeRbdQZE5dSeE2LBol1OwJD3X1BQvFTAsa8ReeDA==",
|
|
5189
5180
|
"dev": true,
|
|
5190
5181
|
"hasInstallScript": true,
|
|
5191
5182
|
"license": "MIT",
|
|
@@ -5209,9 +5200,9 @@
|
|
|
5209
5200
|
}
|
|
5210
5201
|
},
|
|
5211
5202
|
"node_modules/core-js-pure": {
|
|
5212
|
-
"version": "3.
|
|
5213
|
-
"resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.
|
|
5214
|
-
"integrity": "sha512-
|
|
5203
|
+
"version": "3.45.0",
|
|
5204
|
+
"resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.45.0.tgz",
|
|
5205
|
+
"integrity": "sha512-OtwjqcDpY2X/eIIg1ol/n0y/X8A9foliaNt1dSK0gV3J2/zw+89FcNG3mPK+N8YWts4ZFUPxnrAzsxs/lf8yDA==",
|
|
5215
5206
|
"hasInstallScript": true,
|
|
5216
5207
|
"license": "MIT",
|
|
5217
5208
|
"funding": {
|
|
@@ -5564,9 +5555,9 @@
|
|
|
5564
5555
|
"license": "MIT"
|
|
5565
5556
|
},
|
|
5566
5557
|
"node_modules/electron-to-chromium": {
|
|
5567
|
-
"version": "1.5.
|
|
5568
|
-
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.
|
|
5569
|
-
"integrity": "sha512-
|
|
5558
|
+
"version": "1.5.199",
|
|
5559
|
+
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.199.tgz",
|
|
5560
|
+
"integrity": "sha512-3gl0S7zQd88kCAZRO/DnxtBKuhMO4h0EaQIN3YgZfV6+pW+5+bf2AdQeHNESCoaQqo/gjGVYEf2YM4O5HJQqpQ==",
|
|
5570
5561
|
"license": "ISC"
|
|
5571
5562
|
},
|
|
5572
5563
|
"node_modules/emittery": {
|
|
@@ -5766,16 +5757,12 @@
|
|
|
5766
5757
|
}
|
|
5767
5758
|
},
|
|
5768
5759
|
"node_modules/escape-string-regexp": {
|
|
5769
|
-
"version": "
|
|
5770
|
-
"resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-
|
|
5771
|
-
"integrity": "sha512-
|
|
5760
|
+
"version": "1.0.5",
|
|
5761
|
+
"resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
|
|
5762
|
+
"integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==",
|
|
5772
5763
|
"license": "MIT",
|
|
5773
|
-
"peer": true,
|
|
5774
5764
|
"engines": {
|
|
5775
|
-
"node": ">=
|
|
5776
|
-
},
|
|
5777
|
-
"funding": {
|
|
5778
|
-
"url": "https://github.com/sponsors/sindresorhus"
|
|
5765
|
+
"node": ">=0.8.0"
|
|
5779
5766
|
}
|
|
5780
5767
|
},
|
|
5781
5768
|
"node_modules/escodegen": {
|
|
@@ -5800,20 +5787,20 @@
|
|
|
5800
5787
|
}
|
|
5801
5788
|
},
|
|
5802
5789
|
"node_modules/eslint": {
|
|
5803
|
-
"version": "9.
|
|
5804
|
-
"resolved": "https://registry.npmjs.org/eslint/-/eslint-9.
|
|
5805
|
-
"integrity": "sha512-
|
|
5790
|
+
"version": "9.33.0",
|
|
5791
|
+
"resolved": "https://registry.npmjs.org/eslint/-/eslint-9.33.0.tgz",
|
|
5792
|
+
"integrity": "sha512-TS9bTNIryDzStCpJN93aC5VRSW3uTx9sClUn4B87pwiCaJh220otoI0X8mJKr+VcPtniMdN8GKjlwgWGUv5ZKA==",
|
|
5806
5793
|
"license": "MIT",
|
|
5807
5794
|
"peer": true,
|
|
5808
5795
|
"dependencies": {
|
|
5809
5796
|
"@eslint-community/eslint-utils": "^4.2.0",
|
|
5810
5797
|
"@eslint-community/regexpp": "^4.12.1",
|
|
5811
5798
|
"@eslint/config-array": "^0.21.0",
|
|
5812
|
-
"@eslint/config-helpers": "^0.3.
|
|
5813
|
-
"@eslint/core": "^0.15.
|
|
5799
|
+
"@eslint/config-helpers": "^0.3.1",
|
|
5800
|
+
"@eslint/core": "^0.15.2",
|
|
5814
5801
|
"@eslint/eslintrc": "^3.3.1",
|
|
5815
|
-
"@eslint/js": "9.
|
|
5816
|
-
"@eslint/plugin-kit": "^0.3.
|
|
5802
|
+
"@eslint/js": "9.33.0",
|
|
5803
|
+
"@eslint/plugin-kit": "^0.3.5",
|
|
5817
5804
|
"@humanfs/node": "^0.16.6",
|
|
5818
5805
|
"@humanwhocodes/module-importer": "^1.0.1",
|
|
5819
5806
|
"@humanwhocodes/retry": "^0.4.2",
|
|
@@ -5890,6 +5877,19 @@
|
|
|
5890
5877
|
"url": "https://opencollective.com/eslint"
|
|
5891
5878
|
}
|
|
5892
5879
|
},
|
|
5880
|
+
"node_modules/eslint/node_modules/escape-string-regexp": {
|
|
5881
|
+
"version": "4.0.0",
|
|
5882
|
+
"resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
|
|
5883
|
+
"integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==",
|
|
5884
|
+
"license": "MIT",
|
|
5885
|
+
"peer": true,
|
|
5886
|
+
"engines": {
|
|
5887
|
+
"node": ">=10"
|
|
5888
|
+
},
|
|
5889
|
+
"funding": {
|
|
5890
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
5891
|
+
}
|
|
5892
|
+
},
|
|
5893
5893
|
"node_modules/eslint/node_modules/find-up": {
|
|
5894
5894
|
"version": "5.0.0",
|
|
5895
5895
|
"resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz",
|
|
@@ -6164,20 +6164,6 @@
|
|
|
6164
6164
|
"url": "https://github.com/sponsors/jonschlinkert"
|
|
6165
6165
|
}
|
|
6166
6166
|
},
|
|
6167
|
-
"node_modules/external-editor": {
|
|
6168
|
-
"version": "3.1.0",
|
|
6169
|
-
"resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz",
|
|
6170
|
-
"integrity": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==",
|
|
6171
|
-
"license": "MIT",
|
|
6172
|
-
"dependencies": {
|
|
6173
|
-
"chardet": "^0.7.0",
|
|
6174
|
-
"iconv-lite": "^0.4.24",
|
|
6175
|
-
"tmp": "^0.0.33"
|
|
6176
|
-
},
|
|
6177
|
-
"engines": {
|
|
6178
|
-
"node": ">=4"
|
|
6179
|
-
}
|
|
6180
|
-
},
|
|
6181
6167
|
"node_modules/fast-deep-equal": {
|
|
6182
6168
|
"version": "3.1.3",
|
|
6183
6169
|
"resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
|
|
@@ -6247,15 +6233,6 @@
|
|
|
6247
6233
|
"url": "https://github.com/sponsors/sindresorhus"
|
|
6248
6234
|
}
|
|
6249
6235
|
},
|
|
6250
|
-
"node_modules/figures/node_modules/escape-string-regexp": {
|
|
6251
|
-
"version": "1.0.5",
|
|
6252
|
-
"resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
|
|
6253
|
-
"integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==",
|
|
6254
|
-
"license": "MIT",
|
|
6255
|
-
"engines": {
|
|
6256
|
-
"node": ">=0.8.0"
|
|
6257
|
-
}
|
|
6258
|
-
},
|
|
6259
6236
|
"node_modules/file-entry-cache": {
|
|
6260
6237
|
"version": "8.0.0",
|
|
6261
6238
|
"resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz",
|
|
@@ -6880,12 +6857,12 @@
|
|
|
6880
6857
|
}
|
|
6881
6858
|
},
|
|
6882
6859
|
"node_modules/iconv-lite": {
|
|
6883
|
-
"version": "0.
|
|
6884
|
-
"resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.
|
|
6885
|
-
"integrity": "sha512-
|
|
6860
|
+
"version": "0.6.3",
|
|
6861
|
+
"resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz",
|
|
6862
|
+
"integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==",
|
|
6886
6863
|
"license": "MIT",
|
|
6887
6864
|
"dependencies": {
|
|
6888
|
-
"safer-buffer": ">= 2.1.2 < 3"
|
|
6865
|
+
"safer-buffer": ">= 2.1.2 < 3.0.0"
|
|
6889
6866
|
},
|
|
6890
6867
|
"engines": {
|
|
6891
6868
|
"node": ">=0.10.0"
|
|
@@ -7036,16 +7013,16 @@
|
|
|
7036
7013
|
}
|
|
7037
7014
|
},
|
|
7038
7015
|
"node_modules/inquirer": {
|
|
7039
|
-
"version": "8.2.
|
|
7040
|
-
"resolved": "https://registry.npmjs.org/inquirer/-/inquirer-8.2.
|
|
7041
|
-
"integrity": "sha512-
|
|
7016
|
+
"version": "8.2.7",
|
|
7017
|
+
"resolved": "https://registry.npmjs.org/inquirer/-/inquirer-8.2.7.tgz",
|
|
7018
|
+
"integrity": "sha512-UjOaSel/iddGZJ5xP/Eixh6dY1XghiBw4XK13rCCIJcJfyhhoul/7KhLLUGtebEj6GDYM6Vnx/mVsjx2L/mFIA==",
|
|
7042
7019
|
"license": "MIT",
|
|
7043
7020
|
"dependencies": {
|
|
7021
|
+
"@inquirer/external-editor": "^1.0.0",
|
|
7044
7022
|
"ansi-escapes": "^4.2.1",
|
|
7045
7023
|
"chalk": "^4.1.1",
|
|
7046
7024
|
"cli-cursor": "^3.1.0",
|
|
7047
7025
|
"cli-width": "^3.0.0",
|
|
7048
|
-
"external-editor": "^3.0.3",
|
|
7049
7026
|
"figures": "^3.0.0",
|
|
7050
7027
|
"lodash": "^4.17.21",
|
|
7051
7028
|
"mute-stream": "0.0.8",
|
|
@@ -10048,15 +10025,6 @@
|
|
|
10048
10025
|
"url": "https://github.com/sponsors/sindresorhus"
|
|
10049
10026
|
}
|
|
10050
10027
|
},
|
|
10051
|
-
"node_modules/os-tmpdir": {
|
|
10052
|
-
"version": "1.0.2",
|
|
10053
|
-
"resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz",
|
|
10054
|
-
"integrity": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==",
|
|
10055
|
-
"license": "MIT",
|
|
10056
|
-
"engines": {
|
|
10057
|
-
"node": ">=0.10.0"
|
|
10058
|
-
}
|
|
10059
|
-
},
|
|
10060
10028
|
"node_modules/outvariant": {
|
|
10061
10029
|
"version": "1.4.3",
|
|
10062
10030
|
"resolved": "https://registry.npmjs.org/outvariant/-/outvariant-1.4.3.tgz",
|
|
@@ -10430,6 +10398,30 @@
|
|
|
10430
10398
|
"@playwright/test": ">=1.42"
|
|
10431
10399
|
}
|
|
10432
10400
|
},
|
|
10401
|
+
"node_modules/playwright-bdd/node_modules/@cucumber/gherkin": {
|
|
10402
|
+
"version": "32.2.0",
|
|
10403
|
+
"resolved": "https://registry.npmjs.org/@cucumber/gherkin/-/gherkin-32.2.0.tgz",
|
|
10404
|
+
"integrity": "sha512-X8xuVhSIqlUjxSRifRJ7t0TycVWyX58fygJH3wDNmHINLg9sYEkvQT0SO2G5YlRZnYc11TIFr4YPenscvdlBIw==",
|
|
10405
|
+
"license": "MIT",
|
|
10406
|
+
"dependencies": {
|
|
10407
|
+
"@cucumber/messages": ">=19.1.4 <28"
|
|
10408
|
+
}
|
|
10409
|
+
},
|
|
10410
|
+
"node_modules/playwright-bdd/node_modules/@cucumber/html-formatter": {
|
|
10411
|
+
"version": "21.13.0",
|
|
10412
|
+
"resolved": "https://registry.npmjs.org/@cucumber/html-formatter/-/html-formatter-21.13.0.tgz",
|
|
10413
|
+
"integrity": "sha512-/zkBZNGZca7AeY4hSMMu3PBqZBZtZ45qhynZC++LAstlyhXQrzl6zmjVLZMX7jIbdF1Lb+TjN4PWiGtS5VOM6g==",
|
|
10414
|
+
"license": "MIT",
|
|
10415
|
+
"peerDependencies": {
|
|
10416
|
+
"@cucumber/messages": ">=18"
|
|
10417
|
+
}
|
|
10418
|
+
},
|
|
10419
|
+
"node_modules/playwright-bdd/node_modules/@cucumber/tag-expressions": {
|
|
10420
|
+
"version": "6.2.0",
|
|
10421
|
+
"resolved": "https://registry.npmjs.org/@cucumber/tag-expressions/-/tag-expressions-6.2.0.tgz",
|
|
10422
|
+
"integrity": "sha512-KIF0eLcafHbWOuSDWFw0lMmgJOLdDRWjEL1kfXEWrqHmx2119HxVAr35WuEd9z542d3Yyg+XNqSr+81rIKqEdg==",
|
|
10423
|
+
"license": "MIT"
|
|
10424
|
+
},
|
|
10433
10425
|
"node_modules/playwright-bdd/node_modules/commander": {
|
|
10434
10426
|
"version": "13.1.0",
|
|
10435
10427
|
"resolved": "https://registry.npmjs.org/commander/-/commander-13.1.0.tgz",
|
|
@@ -11444,9 +11436,9 @@
|
|
|
11444
11436
|
}
|
|
11445
11437
|
},
|
|
11446
11438
|
"node_modules/spdx-license-ids": {
|
|
11447
|
-
"version": "3.0.
|
|
11448
|
-
"resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.
|
|
11449
|
-
"integrity": "sha512-
|
|
11439
|
+
"version": "3.0.22",
|
|
11440
|
+
"resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.22.tgz",
|
|
11441
|
+
"integrity": "sha512-4PRT4nh1EImPbt2jASOKHX7PB7I+e4IWNLvkKFDxNhJlfjbYlleYQh285Z/3mPTHSAK/AvdMmw5BNNuYH8ShgQ==",
|
|
11450
11442
|
"license": "CC0-1.0"
|
|
11451
11443
|
},
|
|
11452
11444
|
"node_modules/sprintf-js": {
|
|
@@ -11786,18 +11778,6 @@
|
|
|
11786
11778
|
"integrity": "sha512-Eet/eeMhkO6TX8mnUteS9zgPbUMQa4I6Kkp5ORiBD5476/m+PIRiumP5tmh5ioJpH7k51Kehawy2UDfsnxxY8Q==",
|
|
11787
11779
|
"license": "MIT"
|
|
11788
11780
|
},
|
|
11789
|
-
"node_modules/tmp": {
|
|
11790
|
-
"version": "0.0.33",
|
|
11791
|
-
"resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz",
|
|
11792
|
-
"integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==",
|
|
11793
|
-
"license": "MIT",
|
|
11794
|
-
"dependencies": {
|
|
11795
|
-
"os-tmpdir": "~1.0.2"
|
|
11796
|
-
},
|
|
11797
|
-
"engines": {
|
|
11798
|
-
"node": ">=0.6.0"
|
|
11799
|
-
}
|
|
11800
|
-
},
|
|
11801
11781
|
"node_modules/tmpl": {
|
|
11802
11782
|
"version": "1.0.5",
|
|
11803
11783
|
"resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz",
|
|
@@ -12002,9 +11982,9 @@
|
|
|
12002
11982
|
}
|
|
12003
11983
|
},
|
|
12004
11984
|
"node_modules/undici-types": {
|
|
12005
|
-
"version": "7.
|
|
12006
|
-
"resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.
|
|
12007
|
-
"integrity": "sha512-
|
|
11985
|
+
"version": "7.10.0",
|
|
11986
|
+
"resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.10.0.tgz",
|
|
11987
|
+
"integrity": "sha512-t5Fy/nfn+14LuOc2KNYg75vZqClpAiqscVvMygNnlsHBFpSXdJaYtXMcdNLpl/Qvc3P2cB3s6lOV51nqsFq4ag==",
|
|
12008
11988
|
"license": "MIT"
|
|
12009
11989
|
},
|
|
12010
11990
|
"node_modules/unicode-canonical-property-names-ecmascript": {
|
|
@@ -12189,6 +12169,12 @@
|
|
|
12189
12169
|
"node": ">=10.12.0"
|
|
12190
12170
|
}
|
|
12191
12171
|
},
|
|
12172
|
+
"node_modules/v8-to-istanbul/node_modules/convert-source-map": {
|
|
12173
|
+
"version": "2.0.0",
|
|
12174
|
+
"resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz",
|
|
12175
|
+
"integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==",
|
|
12176
|
+
"license": "MIT"
|
|
12177
|
+
},
|
|
12192
12178
|
"node_modules/v8flags": {
|
|
12193
12179
|
"version": "3.2.0",
|
|
12194
12180
|
"resolved": "https://registry.npmjs.org/v8flags/-/v8flags-3.2.0.tgz",
|
|
@@ -12275,18 +12261,6 @@
|
|
|
12275
12261
|
"node": ">=12"
|
|
12276
12262
|
}
|
|
12277
12263
|
},
|
|
12278
|
-
"node_modules/whatwg-encoding/node_modules/iconv-lite": {
|
|
12279
|
-
"version": "0.6.3",
|
|
12280
|
-
"resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz",
|
|
12281
|
-
"integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==",
|
|
12282
|
-
"license": "MIT",
|
|
12283
|
-
"dependencies": {
|
|
12284
|
-
"safer-buffer": ">= 2.1.2 < 3.0.0"
|
|
12285
|
-
},
|
|
12286
|
-
"engines": {
|
|
12287
|
-
"node": ">=0.10.0"
|
|
12288
|
-
}
|
|
12289
|
-
},
|
|
12290
12264
|
"node_modules/whatwg-mimetype": {
|
|
12291
12265
|
"version": "3.0.0",
|
|
12292
12266
|
"resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-3.0.0.tgz",
|
|
@@ -12534,9 +12508,9 @@
|
|
|
12534
12508
|
"license": "ISC"
|
|
12535
12509
|
},
|
|
12536
12510
|
"node_modules/yaml": {
|
|
12537
|
-
"version": "2.8.
|
|
12538
|
-
"resolved": "https://registry.npmjs.org/yaml/-/yaml-2.8.
|
|
12539
|
-
"integrity": "sha512-
|
|
12511
|
+
"version": "2.8.1",
|
|
12512
|
+
"resolved": "https://registry.npmjs.org/yaml/-/yaml-2.8.1.tgz",
|
|
12513
|
+
"integrity": "sha512-lcYcMxX2PO9XMGvAJkJ3OsNMw+/7FKes7/hgerGUYWIoWu5j/+YQqcZr5JnPZWzOsEBgMbSbiSTn/dv/69Mkpw==",
|
|
12540
12514
|
"license": "ISC",
|
|
12541
12515
|
"bin": {
|
|
12542
12516
|
"yaml": "bin.mjs"
|