@zohodesk/testinglibrary 3.1.8 → 3.1.9
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/.gitlab-ci.yml +14 -0
- package/build/core/playwright/builtInFixtures/page.js +3 -1
- package/build/core/playwright/helpers/additionalProfiles.js +18 -0
- package/build/core/playwright/helpers/auth/loginSteps.js +0 -1
- package/build/core/playwright/setup/config-creator.js +18 -2
- package/build/core/playwright/setup/config-utils.js +6 -1
- package/build/core/playwright/setup/qc-custom-reporter.js +126 -16
- package/npm-shrinkwrap.json +168 -105
- package/package.json +1 -1
package/.gitlab-ci.yml
CHANGED
|
@@ -146,4 +146,18 @@ uatconfigmodule:
|
|
|
146
146
|
paths:
|
|
147
147
|
- examples/uat/playwright-report
|
|
148
148
|
|
|
149
|
+
uat-smoketest:
|
|
150
|
+
stage: uat
|
|
151
|
+
script:
|
|
152
|
+
- cd examples
|
|
153
|
+
- npm install $(npm pack ../../testing-framework | tail -1)
|
|
154
|
+
- output=$(npm run uat-smoketest)
|
|
155
|
+
- echo "$output"
|
|
156
|
+
- node ../ValidateUATReport.js examples
|
|
157
|
+
|
|
158
|
+
artifacts:
|
|
159
|
+
when: always
|
|
160
|
+
paths:
|
|
161
|
+
- examples/uat/playwright-report
|
|
162
|
+
|
|
149
163
|
|
|
@@ -9,6 +9,8 @@ var _auth = require("../helpers/auth");
|
|
|
9
9
|
var _readConfigFile = require("../readConfigFile");
|
|
10
10
|
/* eslint-disable global-require */
|
|
11
11
|
|
|
12
|
+
//import { additionProfiles } from '../helpers/additionalProfiles';
|
|
13
|
+
|
|
12
14
|
function getTagInputFromSelectedTags(tags, inputString) {
|
|
13
15
|
const selectedTag = [...tags].reverse().find(tag => tag.startsWith(inputString));
|
|
14
16
|
let tagInput = null;
|
|
@@ -18,7 +20,7 @@ function getTagInputFromSelectedTags(tags, inputString) {
|
|
|
18
20
|
return tagInput;
|
|
19
21
|
}
|
|
20
22
|
function getCustomAccountDetails(tags) {
|
|
21
|
-
const tagsTobeFiltered = ['@profile', '@edition', '@beta', '@portal'];
|
|
23
|
+
const tagsTobeFiltered = ['@profile', '@edition', '@beta', '@portal', '@additional_profile'];
|
|
22
24
|
const filteredTags = tags.filter(tag => tagsTobeFiltered.some(prefix => tag.startsWith(prefix)));
|
|
23
25
|
if (filteredTags && filteredTags.length > 0) {
|
|
24
26
|
const portalInfo = getTagInputFromSelectedTags(filteredTags, '@portal');
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.additionProfiles = additionProfiles;
|
|
7
|
+
var _getUsers = require("./auth/getUsers");
|
|
8
|
+
function additionProfiles(tags, editionInfo, betaFeature, portalInfo) {
|
|
9
|
+
const additionalProfileTags = tags.filter(tag => tag.startsWith('@additional_profile_'));
|
|
10
|
+
let additionalProfileActors = [];
|
|
11
|
+
if (additionalProfileTags.length > 0 && editionInfo) {
|
|
12
|
+
additionalProfileActors = additionalProfileTags.map(tag => {
|
|
13
|
+
const additionalProfile = tag.replace('@additional_profile_', '');
|
|
14
|
+
return (0, _getUsers.getUserForSelectedEditionAndProfile)(editionInfo, additionalProfile, betaFeature, portalInfo);
|
|
15
|
+
});
|
|
16
|
+
}
|
|
17
|
+
return additionalProfileActors;
|
|
18
|
+
}
|
|
@@ -10,7 +10,6 @@ var _fileMutex = _interopRequireDefault(require("../fileMutex"));
|
|
|
10
10
|
var _fileMutexConfig = require("../../constants/fileMutexConfig");
|
|
11
11
|
var _checkAuthCookies = require("./checkAuthCookies");
|
|
12
12
|
var _checkAuthDirectory = require("../checkAuthDirectory");
|
|
13
|
-
var _fs = require("fs");
|
|
14
13
|
/* eslint-disable no-console */
|
|
15
14
|
|
|
16
15
|
async function performLoginSteps(testInfo, isLoggedIn, loginSteps) {
|
|
@@ -12,6 +12,7 @@ var _configUtils = require("./config-utils");
|
|
|
12
12
|
const uatConfig = (0, _readConfigFile.generateConfigFromFile)();
|
|
13
13
|
const {
|
|
14
14
|
browsers,
|
|
15
|
+
isSmokeTest,
|
|
15
16
|
trace,
|
|
16
17
|
video,
|
|
17
18
|
isAuthMode,
|
|
@@ -31,6 +32,7 @@ const {
|
|
|
31
32
|
const projects = (0, _configUtils.getProjects)({
|
|
32
33
|
browsers,
|
|
33
34
|
isAuthMode,
|
|
35
|
+
isSmokeTest,
|
|
34
36
|
authFilePath,
|
|
35
37
|
expectTimeout,
|
|
36
38
|
testTimeout,
|
|
@@ -61,7 +63,21 @@ if (customReporter) {
|
|
|
61
63
|
*
|
|
62
64
|
* @returns {import('@playwright/test').PlaywrightTestConfig}
|
|
63
65
|
*/
|
|
66
|
+
|
|
64
67
|
function getPlaywrightConfig() {
|
|
68
|
+
const commonConfig = {
|
|
69
|
+
storageState: isAuthMode ? (0, _readConfigFile.getAuthFilePath)(_path.default.resolve(process.cwd(), authFilePath)) : {}
|
|
70
|
+
};
|
|
71
|
+
const dependencies = isAuthMode ? ['setup'] : [];
|
|
72
|
+
const smokeTestProject = isSmokeTest ? {
|
|
73
|
+
name: 'smokeTest',
|
|
74
|
+
testMatch: /.*\.smokeTest\.js/,
|
|
75
|
+
testDir: _path.default.join(process.cwd(), 'uat'),
|
|
76
|
+
use: {
|
|
77
|
+
...commonConfig
|
|
78
|
+
},
|
|
79
|
+
dependencies: dependencies
|
|
80
|
+
} : {};
|
|
65
81
|
const playwrightConfig = {
|
|
66
82
|
testDir,
|
|
67
83
|
globalTimeout: globalTimeout || 3600000,
|
|
@@ -78,11 +94,11 @@ function getPlaywrightConfig() {
|
|
|
78
94
|
testMatch: /.*\.setup\.js/,
|
|
79
95
|
testDir: _path.default.join(process.cwd(), 'uat'),
|
|
80
96
|
teardown: 'cleanup'
|
|
81
|
-
}, {
|
|
97
|
+
}, smokeTestProject, {
|
|
82
98
|
name: 'cleanup',
|
|
83
99
|
testMatch: /.*\.teardown\.js/,
|
|
84
100
|
testDir: _path.default.join(process.cwd(), 'uat')
|
|
85
|
-
}, ...projects] : [...projects],
|
|
101
|
+
}, ...projects] : [...projects, smokeTestProject],
|
|
86
102
|
...uatConfig
|
|
87
103
|
};
|
|
88
104
|
return playwrightConfig;
|
|
@@ -19,9 +19,11 @@ var _fileUtils = require("../../../utils/fileUtils");
|
|
|
19
19
|
** Playwright project configuration
|
|
20
20
|
* @returns {import('@playwright/test').Project}
|
|
21
21
|
*/
|
|
22
|
+
|
|
22
23
|
function getBrowserConfig({
|
|
23
24
|
browserName,
|
|
24
25
|
isAuthMode,
|
|
26
|
+
isSmokeTest,
|
|
25
27
|
authFilePath,
|
|
26
28
|
expectTimeout,
|
|
27
29
|
testTimeout,
|
|
@@ -32,7 +34,8 @@ function getBrowserConfig({
|
|
|
32
34
|
viewport,
|
|
33
35
|
storageState: isAuthMode ? (0, _readConfigFile.getAuthFilePath)(_path.default.resolve(process.cwd(), authFilePath)) : {}
|
|
34
36
|
};
|
|
35
|
-
|
|
37
|
+
// Determine dependencies based on the mode and smoke test status
|
|
38
|
+
const dependencies = isSmokeTest ? isAuthMode ? ['setup', 'smokeTest'] : ['smokeTest'] : isAuthMode ? ['setup'] : [];
|
|
36
39
|
if (browser === 'chrome') {
|
|
37
40
|
return {
|
|
38
41
|
name: _browserTypes.BROWSER_PROJECT_MAPPING.CHROME,
|
|
@@ -99,6 +102,7 @@ function getBrowserConfig({
|
|
|
99
102
|
function getProjects({
|
|
100
103
|
browsers,
|
|
101
104
|
isAuthMode,
|
|
105
|
+
isSmokeTest,
|
|
102
106
|
authFilePath,
|
|
103
107
|
expectTimeout,
|
|
104
108
|
testTimeout,
|
|
@@ -107,6 +111,7 @@ function getProjects({
|
|
|
107
111
|
return browsers.map(browserName => getBrowserConfig({
|
|
108
112
|
browserName,
|
|
109
113
|
isAuthMode,
|
|
114
|
+
isSmokeTest,
|
|
110
115
|
authFilePath,
|
|
111
116
|
expectTimeout,
|
|
112
117
|
testTimeout,
|
|
@@ -32,23 +32,12 @@ class CustomJsonReporter {
|
|
|
32
32
|
attachments: result.attachments,
|
|
33
33
|
startTime: result.startTime,
|
|
34
34
|
retry: result.retry,
|
|
35
|
-
stderr: result.stderr.map(err => (
|
|
36
|
-
|
|
37
|
-
})),
|
|
38
|
-
stdout: result.stdout.map(out => ({
|
|
39
|
-
text: out
|
|
40
|
-
})),
|
|
35
|
+
stderr: result.stderr.map(err => stdioEntry(err)),
|
|
36
|
+
stdout: result.stdout.map(out => stdioEntry(out)),
|
|
41
37
|
workerIndex: result.workerIndex,
|
|
42
38
|
duration: result.duration,
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
stack,
|
|
46
|
-
snippet
|
|
47
|
-
}) => ({
|
|
48
|
-
message,
|
|
49
|
-
stack,
|
|
50
|
-
snippet
|
|
51
|
-
}))) ?? [],
|
|
39
|
+
error: result.error,
|
|
40
|
+
errors: (_result$errors = result.errors) === null || _result$errors === void 0 ? void 0 : _result$errors.map(processError),
|
|
52
41
|
steps: ((_result$steps = result.steps) === null || _result$steps === void 0 ? void 0 : _result$steps.map(step => extractMergedSteps(this.report.config.rootDir, step))) ?? []
|
|
53
42
|
};
|
|
54
43
|
const existingResults = this.testResultsById.get(key) ?? [];
|
|
@@ -163,4 +152,125 @@ const parseLocation = (rootDir, {
|
|
|
163
152
|
file: isRelative ? _path.default.relative(rootDir, file) : file,
|
|
164
153
|
line,
|
|
165
154
|
column
|
|
166
|
-
} : {};
|
|
155
|
+
} : {};
|
|
156
|
+
const stdioEntry = s => typeof s === 'string' ? {
|
|
157
|
+
text: s
|
|
158
|
+
} : {
|
|
159
|
+
buffer: s.toString('base64')
|
|
160
|
+
};
|
|
161
|
+
const processError = error => {
|
|
162
|
+
const message = error.message || error.value || '';
|
|
163
|
+
const stack = error.stack;
|
|
164
|
+
if (!stack && !error.location) return {
|
|
165
|
+
message
|
|
166
|
+
};
|
|
167
|
+
const tokens = [];
|
|
168
|
+
const parsedStack = stack ? constructErrorStack(stack) : undefined;
|
|
169
|
+
tokens.push((parsedStack === null || parsedStack === void 0 ? void 0 : parsedStack.message) || message);
|
|
170
|
+
if (error.snippet) {
|
|
171
|
+
tokens.push('');
|
|
172
|
+
tokens.push(error.snippet);
|
|
173
|
+
}
|
|
174
|
+
if (parsedStack && parsedStack.stackLines.length) {
|
|
175
|
+
const dimmedStackLines = parsedStack.stackLines.split('\n').map(line => dimify(line));
|
|
176
|
+
tokens.push(dimmedStackLines.join('\n'));
|
|
177
|
+
}
|
|
178
|
+
let location = error.location;
|
|
179
|
+
if (parsedStack && !location) location = parsedStack.location;
|
|
180
|
+
if (error.cause) tokens.push(dimify('[cause]: ') + processError(error.cause).message);
|
|
181
|
+
return {
|
|
182
|
+
location,
|
|
183
|
+
message: tokens.join('\n')
|
|
184
|
+
};
|
|
185
|
+
};
|
|
186
|
+
const constructErrorStack = stack => parseErrorStack(stack, _path.default.sep, false);
|
|
187
|
+
const dimify = text => `\x1b[2m${text}\x1b[22m`;
|
|
188
|
+
const parseErrorStack = (stack, pathSeparator, showInternalStackFrames = false) => {
|
|
189
|
+
const lines = stack.split("\n");
|
|
190
|
+
let firstStackLineIndex = lines.findIndex(line => line.startsWith(" at "));
|
|
191
|
+
if (firstStackLineIndex === -1) firstStackLineIndex = lines.length;
|
|
192
|
+
const message = lines.slice(0, firstStackLineIndex).join("\n");
|
|
193
|
+
const stackStartIndex = indexLocator(stack, '\n', firstStackLineIndex) + 1 || 0;
|
|
194
|
+
const stackLinesString = stackStartIndex ? stack.slice(stackStartIndex) : '';
|
|
195
|
+
let location;
|
|
196
|
+
const stackLinesArr = stackLinesString.split('\n');
|
|
197
|
+
for (const line of stackLinesArr) {
|
|
198
|
+
const frame = parseStackFrame(line, pathSeparator, showInternalStackFrames);
|
|
199
|
+
if (!frame || !frame.file) continue;
|
|
200
|
+
if (isInNodeModules(frame.file, pathSeparator)) continue;
|
|
201
|
+
location = {
|
|
202
|
+
file: frame.file,
|
|
203
|
+
column: frame.column || 0,
|
|
204
|
+
line: frame.line || 0
|
|
205
|
+
};
|
|
206
|
+
break;
|
|
207
|
+
}
|
|
208
|
+
return {
|
|
209
|
+
message,
|
|
210
|
+
stackLines: stackLinesString,
|
|
211
|
+
location
|
|
212
|
+
};
|
|
213
|
+
};
|
|
214
|
+
const indexLocator = (str, pat, n) => {
|
|
215
|
+
let L = str.length,
|
|
216
|
+
i = -1;
|
|
217
|
+
while (n-- && i++ < L) {
|
|
218
|
+
i = str.indexOf(pat, i);
|
|
219
|
+
if (i < 0) break;
|
|
220
|
+
}
|
|
221
|
+
return i;
|
|
222
|
+
};
|
|
223
|
+
const isInNodeModules = (file, pathSeparator) => file.includes(`${pathSeparator}node_modules${pathSeparator}`);
|
|
224
|
+
const parseStackFrame = (text, pathSeparator, showInternalStackFrames) => {
|
|
225
|
+
const re = new RegExp("^(?:\\s*at )?(?:(new) )?(?:(.*?) \\()?(?:eval at ([^ ]+) \\((.+?):(\\d+):(\\d+)\\), )?(?:(.+?):(\\d+):(\\d+)|(native))(\\)?)$");
|
|
226
|
+
const methodRe = /^(.*?) \[as (.*?)\]$/;
|
|
227
|
+
const match = text && text.match(re);
|
|
228
|
+
if (!match) return null;
|
|
229
|
+
let fname = match[2];
|
|
230
|
+
let file = match[7];
|
|
231
|
+
if (!file) return null;
|
|
232
|
+
if (!showInternalStackFrames && (file.startsWith("internal") || file.startsWith("node:"))) return null;
|
|
233
|
+
const line = match[8];
|
|
234
|
+
const column = match[9];
|
|
235
|
+
const closeParen = match[11] === ")";
|
|
236
|
+
const frame = {
|
|
237
|
+
file: "",
|
|
238
|
+
line: 0,
|
|
239
|
+
column: 0
|
|
240
|
+
};
|
|
241
|
+
if (line) frame.line = Number(line);
|
|
242
|
+
if (column) frame.column = Number(column);
|
|
243
|
+
if (closeParen && file) {
|
|
244
|
+
let closes = 0;
|
|
245
|
+
for (let i = file.length - 1; i > 0; i--) {
|
|
246
|
+
if (file.charAt(i) === ")") {
|
|
247
|
+
closes++;
|
|
248
|
+
} else if (file.charAt(i) === "(" && file.charAt(i - 1) === " ") {
|
|
249
|
+
closes--;
|
|
250
|
+
if (closes === -1 && file.charAt(i - 1) === " ") {
|
|
251
|
+
const before = file.slice(0, i - 1);
|
|
252
|
+
const after = file.slice(i + 1);
|
|
253
|
+
file = after;
|
|
254
|
+
fname += ` (${before}`;
|
|
255
|
+
break;
|
|
256
|
+
}
|
|
257
|
+
}
|
|
258
|
+
}
|
|
259
|
+
}
|
|
260
|
+
if (fname) {
|
|
261
|
+
const methodMatch = fname.match(methodRe);
|
|
262
|
+
if (methodMatch) fname = methodMatch[1];
|
|
263
|
+
}
|
|
264
|
+
if (file) {
|
|
265
|
+
if (file.startsWith("file://")) file = fileURLToPath(file, pathSeparator);
|
|
266
|
+
frame.file = file;
|
|
267
|
+
}
|
|
268
|
+
if (fname) frame.function = fname;
|
|
269
|
+
return frame;
|
|
270
|
+
};
|
|
271
|
+
const fileURLToPath = (fileUrl, pathSeparator) => {
|
|
272
|
+
if (!fileUrl.startsWith("file://")) return fileUrl;
|
|
273
|
+
let path = decodeURIComponent(fileUrl.slice(7));
|
|
274
|
+
if (path.startsWith("/") && /^[a-zA-Z]:/.test(path.slice(1))) path = path.slice(1);
|
|
275
|
+
return path.replace(/\//g, pathSeparator);
|
|
276
|
+
};
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zohodesk/testinglibrary",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.9",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@zohodesk/testinglibrary",
|
|
9
|
-
"version": "3.1.
|
|
9
|
+
"version": "3.1.9",
|
|
10
10
|
"hasInstallScript": true,
|
|
11
11
|
"license": "ISC",
|
|
12
12
|
"dependencies": {
|
|
@@ -1911,6 +1911,78 @@
|
|
|
1911
1911
|
"regexp-match-indices": "1.0.2"
|
|
1912
1912
|
}
|
|
1913
1913
|
},
|
|
1914
|
+
"node_modules/@cucumber/cucumber/node_modules/@cucumber/gherkin-utils": {
|
|
1915
|
+
"version": "9.0.0",
|
|
1916
|
+
"resolved": "https://registry.npmjs.org/@cucumber/gherkin-utils/-/gherkin-utils-9.0.0.tgz",
|
|
1917
|
+
"integrity": "sha512-clk4q39uj7pztZuZtyI54V8lRsCUz0Y/p8XRjIeHh7ExeEztpWkp4ca9q1FjUOPfQQ8E7OgqFbqoQQXZ1Bx7fw==",
|
|
1918
|
+
"license": "MIT",
|
|
1919
|
+
"dependencies": {
|
|
1920
|
+
"@cucumber/gherkin": "^28.0.0",
|
|
1921
|
+
"@cucumber/messages": "^24.0.0",
|
|
1922
|
+
"@teppeis/multimaps": "3.0.0",
|
|
1923
|
+
"commander": "12.0.0",
|
|
1924
|
+
"source-map-support": "^0.5.21"
|
|
1925
|
+
},
|
|
1926
|
+
"bin": {
|
|
1927
|
+
"gherkin-utils": "bin/gherkin-utils"
|
|
1928
|
+
}
|
|
1929
|
+
},
|
|
1930
|
+
"node_modules/@cucumber/cucumber/node_modules/@cucumber/gherkin-utils/node_modules/@cucumber/gherkin": {
|
|
1931
|
+
"version": "28.0.0",
|
|
1932
|
+
"resolved": "https://registry.npmjs.org/@cucumber/gherkin/-/gherkin-28.0.0.tgz",
|
|
1933
|
+
"integrity": "sha512-Ee6zJQq0OmIUPdW0mSnsCsrWA2PZAELNDPICD2pLfs0Oz7RAPgj80UsD2UCtqyAhw2qAR62aqlktKUlai5zl/A==",
|
|
1934
|
+
"license": "MIT",
|
|
1935
|
+
"dependencies": {
|
|
1936
|
+
"@cucumber/messages": ">=19.1.4 <=24"
|
|
1937
|
+
}
|
|
1938
|
+
},
|
|
1939
|
+
"node_modules/@cucumber/cucumber/node_modules/@cucumber/gherkin-utils/node_modules/@cucumber/messages": {
|
|
1940
|
+
"version": "24.1.0",
|
|
1941
|
+
"resolved": "https://registry.npmjs.org/@cucumber/messages/-/messages-24.1.0.tgz",
|
|
1942
|
+
"integrity": "sha512-hxVHiBurORcobhVk80I9+JkaKaNXkW6YwGOEFIh/2aO+apAN+5XJgUUWjng9NwqaQrW1sCFuawLB1AuzmBaNdQ==",
|
|
1943
|
+
"license": "MIT",
|
|
1944
|
+
"dependencies": {
|
|
1945
|
+
"@types/uuid": "9.0.8",
|
|
1946
|
+
"class-transformer": "0.5.1",
|
|
1947
|
+
"reflect-metadata": "0.2.1",
|
|
1948
|
+
"uuid": "9.0.1"
|
|
1949
|
+
}
|
|
1950
|
+
},
|
|
1951
|
+
"node_modules/@cucumber/cucumber/node_modules/@cucumber/gherkin-utils/node_modules/@types/uuid": {
|
|
1952
|
+
"version": "9.0.8",
|
|
1953
|
+
"resolved": "https://registry.npmjs.org/@types/uuid/-/uuid-9.0.8.tgz",
|
|
1954
|
+
"integrity": "sha512-jg+97EGIcY9AGHJJRaaPVgetKDsrTgbRjQ5Msgjh/DQKEFl0DtyRr/VCOyD1T2R1MNeWPK/u7JoGhlDZnKBAfA==",
|
|
1955
|
+
"license": "MIT"
|
|
1956
|
+
},
|
|
1957
|
+
"node_modules/@cucumber/cucumber/node_modules/@cucumber/gherkin-utils/node_modules/commander": {
|
|
1958
|
+
"version": "12.0.0",
|
|
1959
|
+
"resolved": "https://registry.npmjs.org/commander/-/commander-12.0.0.tgz",
|
|
1960
|
+
"integrity": "sha512-MwVNWlYjDTtOjX5PiD7o5pK0UrFU/OYgcJfjjK4RaHZETNtjJqrZa9Y9ds88+A+f+d5lv+561eZ+yCKoS3gbAA==",
|
|
1961
|
+
"license": "MIT",
|
|
1962
|
+
"engines": {
|
|
1963
|
+
"node": ">=18"
|
|
1964
|
+
}
|
|
1965
|
+
},
|
|
1966
|
+
"node_modules/@cucumber/cucumber/node_modules/@cucumber/gherkin-utils/node_modules/reflect-metadata": {
|
|
1967
|
+
"version": "0.2.1",
|
|
1968
|
+
"resolved": "https://registry.npmjs.org/reflect-metadata/-/reflect-metadata-0.2.1.tgz",
|
|
1969
|
+
"integrity": "sha512-i5lLI6iw9AU3Uu4szRNPPEkomnkjRTaVt9hy/bn5g/oSzekBSMeLZblcjP74AW0vBabqERLLIrz+gR8QYR54Tw==",
|
|
1970
|
+
"deprecated": "This version has a critical bug in fallback handling. Please upgrade to reflect-metadata@0.2.2 or newer.",
|
|
1971
|
+
"license": "Apache-2.0"
|
|
1972
|
+
},
|
|
1973
|
+
"node_modules/@cucumber/cucumber/node_modules/@cucumber/gherkin-utils/node_modules/uuid": {
|
|
1974
|
+
"version": "9.0.1",
|
|
1975
|
+
"resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.1.tgz",
|
|
1976
|
+
"integrity": "sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==",
|
|
1977
|
+
"funding": [
|
|
1978
|
+
"https://github.com/sponsors/broofa",
|
|
1979
|
+
"https://github.com/sponsors/ctavan"
|
|
1980
|
+
],
|
|
1981
|
+
"license": "MIT",
|
|
1982
|
+
"bin": {
|
|
1983
|
+
"uuid": "dist/bin/uuid"
|
|
1984
|
+
}
|
|
1985
|
+
},
|
|
1914
1986
|
"node_modules/@cucumber/cucumber/node_modules/@cucumber/messages": {
|
|
1915
1987
|
"version": "27.0.2",
|
|
1916
1988
|
"resolved": "https://registry.npmjs.org/@cucumber/messages/-/messages-27.0.2.tgz",
|
|
@@ -1938,6 +2010,21 @@
|
|
|
1938
2010
|
"balanced-match": "^1.0.0"
|
|
1939
2011
|
}
|
|
1940
2012
|
},
|
|
2013
|
+
"node_modules/@cucumber/cucumber/node_modules/cli-table3": {
|
|
2014
|
+
"version": "0.6.3",
|
|
2015
|
+
"resolved": "https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.3.tgz",
|
|
2016
|
+
"integrity": "sha512-w5Jac5SykAeZJKntOxJCrm63Eg5/4dhMWIcuTbo9rpE+brgaSZo0RuNJZeOyMgsUdhDeojvgyQLmjI+K50ZGyg==",
|
|
2017
|
+
"license": "MIT",
|
|
2018
|
+
"dependencies": {
|
|
2019
|
+
"string-width": "^4.2.0"
|
|
2020
|
+
},
|
|
2021
|
+
"engines": {
|
|
2022
|
+
"node": "10.* || >= 12.*"
|
|
2023
|
+
},
|
|
2024
|
+
"optionalDependencies": {
|
|
2025
|
+
"@colors/colors": "1.5.0"
|
|
2026
|
+
}
|
|
2027
|
+
},
|
|
1941
2028
|
"node_modules/@cucumber/cucumber/node_modules/commander": {
|
|
1942
2029
|
"version": "10.0.1",
|
|
1943
2030
|
"resolved": "https://registry.npmjs.org/commander/-/commander-10.0.1.tgz",
|
|
@@ -1978,6 +2065,15 @@
|
|
|
1978
2065
|
"node": ">=10"
|
|
1979
2066
|
}
|
|
1980
2067
|
},
|
|
2068
|
+
"node_modules/@cucumber/cucumber/node_modules/luxon": {
|
|
2069
|
+
"version": "3.2.1",
|
|
2070
|
+
"resolved": "https://registry.npmjs.org/luxon/-/luxon-3.2.1.tgz",
|
|
2071
|
+
"integrity": "sha512-QrwPArQCNLAKGO/C+ZIilgIuDnEnKx5QYODdDtbFaxzsbZcc/a7WFq7MhsVYgRlwawLtvOUESTlfJ+hc/USqPg==",
|
|
2072
|
+
"license": "MIT",
|
|
2073
|
+
"engines": {
|
|
2074
|
+
"node": ">=12"
|
|
2075
|
+
}
|
|
2076
|
+
},
|
|
1981
2077
|
"node_modules/@cucumber/cucumber/node_modules/minimatch": {
|
|
1982
2078
|
"version": "9.0.5",
|
|
1983
2079
|
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz",
|
|
@@ -2015,9 +2111,9 @@
|
|
|
2015
2111
|
}
|
|
2016
2112
|
},
|
|
2017
2113
|
"node_modules/@cucumber/cucumber/node_modules/type-fest": {
|
|
2018
|
-
"version": "4.
|
|
2019
|
-
"resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.
|
|
2020
|
-
"integrity": "sha512-
|
|
2114
|
+
"version": "4.41.0",
|
|
2115
|
+
"resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.41.0.tgz",
|
|
2116
|
+
"integrity": "sha512-TeTSQ6H5YHvpqVwBRcnLDCBnDOHWYu7IvGbHT6N8AOymcr9PJGjc1GTtiWZTYg0NCgYwvnYWEkVChQAr9bjfwA==",
|
|
2021
2117
|
"license": "(MIT OR CC0-1.0)",
|
|
2022
2118
|
"engines": {
|
|
2023
2119
|
"node": ">=16"
|
|
@@ -2080,15 +2176,15 @@
|
|
|
2080
2176
|
}
|
|
2081
2177
|
},
|
|
2082
2178
|
"node_modules/@cucumber/gherkin-utils": {
|
|
2083
|
-
"version": "9.
|
|
2084
|
-
"resolved": "https://registry.npmjs.org/@cucumber/gherkin-utils/-/gherkin-utils-9.
|
|
2085
|
-
"integrity": "sha512-
|
|
2179
|
+
"version": "9.2.0",
|
|
2180
|
+
"resolved": "https://registry.npmjs.org/@cucumber/gherkin-utils/-/gherkin-utils-9.2.0.tgz",
|
|
2181
|
+
"integrity": "sha512-3nmRbG1bUAZP3fAaUBNmqWO0z0OSkykZZotfLjyhc8KWwDSOrOmMJlBTd474lpA8EWh4JFLAX3iXgynBqBvKzw==",
|
|
2086
2182
|
"license": "MIT",
|
|
2087
2183
|
"dependencies": {
|
|
2088
|
-
"@cucumber/gherkin": "^
|
|
2089
|
-
"@cucumber/messages": "^
|
|
2184
|
+
"@cucumber/gherkin": "^31.0.0",
|
|
2185
|
+
"@cucumber/messages": "^27.0.0",
|
|
2090
2186
|
"@teppeis/multimaps": "3.0.0",
|
|
2091
|
-
"commander": "
|
|
2187
|
+
"commander": "13.1.0",
|
|
2092
2188
|
"source-map-support": "^0.5.21"
|
|
2093
2189
|
},
|
|
2094
2190
|
"bin": {
|
|
@@ -2096,59 +2192,83 @@
|
|
|
2096
2192
|
}
|
|
2097
2193
|
},
|
|
2098
2194
|
"node_modules/@cucumber/gherkin-utils/node_modules/@cucumber/gherkin": {
|
|
2099
|
-
"version": "
|
|
2100
|
-
"resolved": "https://registry.npmjs.org/@cucumber/gherkin/-/gherkin-
|
|
2101
|
-
"integrity": "sha512-
|
|
2195
|
+
"version": "31.0.0",
|
|
2196
|
+
"resolved": "https://registry.npmjs.org/@cucumber/gherkin/-/gherkin-31.0.0.tgz",
|
|
2197
|
+
"integrity": "sha512-wlZfdPif7JpBWJdqvHk1Mkr21L5vl4EfxVUOS4JinWGf3FLRV6IKUekBv5bb5VX79fkDcfDvESzcQ8WQc07Wgw==",
|
|
2102
2198
|
"license": "MIT",
|
|
2103
2199
|
"dependencies": {
|
|
2104
|
-
"@cucumber/messages": ">=19.1.4 <=
|
|
2200
|
+
"@cucumber/messages": ">=19.1.4 <=26"
|
|
2201
|
+
}
|
|
2202
|
+
},
|
|
2203
|
+
"node_modules/@cucumber/gherkin-utils/node_modules/@cucumber/gherkin/node_modules/@cucumber/messages": {
|
|
2204
|
+
"version": "26.0.1",
|
|
2205
|
+
"resolved": "https://registry.npmjs.org/@cucumber/messages/-/messages-26.0.1.tgz",
|
|
2206
|
+
"integrity": "sha512-DIxSg+ZGariumO+Lq6bn4kOUIUET83A4umrnWmidjGFl8XxkBieUZtsmNbLYgH/gnsmP07EfxxdTr0hOchV1Sg==",
|
|
2207
|
+
"license": "MIT",
|
|
2208
|
+
"dependencies": {
|
|
2209
|
+
"@types/uuid": "10.0.0",
|
|
2210
|
+
"class-transformer": "0.5.1",
|
|
2211
|
+
"reflect-metadata": "0.2.2",
|
|
2212
|
+
"uuid": "10.0.0"
|
|
2213
|
+
}
|
|
2214
|
+
},
|
|
2215
|
+
"node_modules/@cucumber/gherkin-utils/node_modules/@cucumber/gherkin/node_modules/uuid": {
|
|
2216
|
+
"version": "10.0.0",
|
|
2217
|
+
"resolved": "https://registry.npmjs.org/uuid/-/uuid-10.0.0.tgz",
|
|
2218
|
+
"integrity": "sha512-8XkAphELsDnEGrDxUOHB3RGvXz6TeuYSGEZBOjtTtPm2lwhGBjLgOzLHB63IUWfBpNucQjND6d3AOudO+H3RWQ==",
|
|
2219
|
+
"funding": [
|
|
2220
|
+
"https://github.com/sponsors/broofa",
|
|
2221
|
+
"https://github.com/sponsors/ctavan"
|
|
2222
|
+
],
|
|
2223
|
+
"license": "MIT",
|
|
2224
|
+
"bin": {
|
|
2225
|
+
"uuid": "dist/bin/uuid"
|
|
2105
2226
|
}
|
|
2106
2227
|
},
|
|
2107
2228
|
"node_modules/@cucumber/gherkin-utils/node_modules/@cucumber/messages": {
|
|
2108
|
-
"version": "
|
|
2109
|
-
"resolved": "https://registry.npmjs.org/@cucumber/messages/-/messages-
|
|
2110
|
-
"integrity": "sha512-
|
|
2229
|
+
"version": "27.2.0",
|
|
2230
|
+
"resolved": "https://registry.npmjs.org/@cucumber/messages/-/messages-27.2.0.tgz",
|
|
2231
|
+
"integrity": "sha512-f2o/HqKHgsqzFLdq6fAhfG1FNOQPdBdyMGpKwhb7hZqg0yZtx9BVqkTyuoNk83Fcvk3wjMVfouFXXHNEk4nddA==",
|
|
2111
2232
|
"license": "MIT",
|
|
2112
2233
|
"dependencies": {
|
|
2113
|
-
"@types/uuid": "
|
|
2234
|
+
"@types/uuid": "10.0.0",
|
|
2114
2235
|
"class-transformer": "0.5.1",
|
|
2115
|
-
"reflect-metadata": "0.2.
|
|
2116
|
-
"uuid": "
|
|
2236
|
+
"reflect-metadata": "0.2.2",
|
|
2237
|
+
"uuid": "11.0.5"
|
|
2117
2238
|
}
|
|
2118
2239
|
},
|
|
2119
2240
|
"node_modules/@cucumber/gherkin-utils/node_modules/@types/uuid": {
|
|
2120
|
-
"version": "
|
|
2121
|
-
"resolved": "https://registry.npmjs.org/@types/uuid/-/uuid-
|
|
2122
|
-
"integrity": "sha512-
|
|
2241
|
+
"version": "10.0.0",
|
|
2242
|
+
"resolved": "https://registry.npmjs.org/@types/uuid/-/uuid-10.0.0.tgz",
|
|
2243
|
+
"integrity": "sha512-7gqG38EyHgyP1S+7+xomFtL+ZNHcKv6DwNaCZmJmo1vgMugyF3TCnXVg4t1uk89mLNwnLtnY3TpOpCOyp1/xHQ==",
|
|
2123
2244
|
"license": "MIT"
|
|
2124
2245
|
},
|
|
2125
2246
|
"node_modules/@cucumber/gherkin-utils/node_modules/commander": {
|
|
2126
|
-
"version": "
|
|
2127
|
-
"resolved": "https://registry.npmjs.org/commander/-/commander-
|
|
2128
|
-
"integrity": "sha512
|
|
2247
|
+
"version": "13.1.0",
|
|
2248
|
+
"resolved": "https://registry.npmjs.org/commander/-/commander-13.1.0.tgz",
|
|
2249
|
+
"integrity": "sha512-/rFeCpNJQbhSZjGVwO9RFV3xPqbnERS8MmIQzCtD/zl6gpJuV/bMLuN92oG3F7d8oDEHHRrujSXNUr8fpjntKw==",
|
|
2129
2250
|
"license": "MIT",
|
|
2130
2251
|
"engines": {
|
|
2131
2252
|
"node": ">=18"
|
|
2132
2253
|
}
|
|
2133
2254
|
},
|
|
2134
2255
|
"node_modules/@cucumber/gherkin-utils/node_modules/reflect-metadata": {
|
|
2135
|
-
"version": "0.2.
|
|
2136
|
-
"resolved": "https://registry.npmjs.org/reflect-metadata/-/reflect-metadata-0.2.
|
|
2137
|
-
"integrity": "sha512-
|
|
2138
|
-
"deprecated": "This version has a critical bug in fallback handling. Please upgrade to reflect-metadata@0.2.2 or newer.",
|
|
2256
|
+
"version": "0.2.2",
|
|
2257
|
+
"resolved": "https://registry.npmjs.org/reflect-metadata/-/reflect-metadata-0.2.2.tgz",
|
|
2258
|
+
"integrity": "sha512-urBwgfrvVP/eAyXx4hluJivBKzuEbSQs9rKWCrCkbSxNv8mxPcUZKeuoF3Uy4mJl3Lwprp6yy5/39VWigZ4K6Q==",
|
|
2139
2259
|
"license": "Apache-2.0"
|
|
2140
2260
|
},
|
|
2141
2261
|
"node_modules/@cucumber/gherkin-utils/node_modules/uuid": {
|
|
2142
|
-
"version": "
|
|
2143
|
-
"resolved": "https://registry.npmjs.org/uuid/-/uuid-
|
|
2144
|
-
"integrity": "sha512-
|
|
2262
|
+
"version": "11.0.5",
|
|
2263
|
+
"resolved": "https://registry.npmjs.org/uuid/-/uuid-11.0.5.tgz",
|
|
2264
|
+
"integrity": "sha512-508e6IcKLrhxKdBbcA2b4KQZlLVp2+J5UwQ6F7Drckkc5N9ZJwFa4TgWtsww9UG8fGHbm6gbV19TdM5pQ4GaIA==",
|
|
2145
2265
|
"funding": [
|
|
2146
2266
|
"https://github.com/sponsors/broofa",
|
|
2147
2267
|
"https://github.com/sponsors/ctavan"
|
|
2148
2268
|
],
|
|
2149
2269
|
"license": "MIT",
|
|
2150
2270
|
"bin": {
|
|
2151
|
-
"uuid": "dist/bin/uuid"
|
|
2271
|
+
"uuid": "dist/esm/bin/uuid"
|
|
2152
2272
|
}
|
|
2153
2273
|
},
|
|
2154
2274
|
"node_modules/@cucumber/html-formatter": {
|
|
@@ -2175,15 +2295,6 @@
|
|
|
2175
2295
|
"@cucumber/messages": "*"
|
|
2176
2296
|
}
|
|
2177
2297
|
},
|
|
2178
|
-
"node_modules/@cucumber/junit-xml-formatter/node_modules/luxon": {
|
|
2179
|
-
"version": "3.5.0",
|
|
2180
|
-
"resolved": "https://registry.npmjs.org/luxon/-/luxon-3.5.0.tgz",
|
|
2181
|
-
"integrity": "sha512-rh+Zjr6DNfUYR3bPwJEnuwDdqMbxZW7LOQfUN4B54+Cl+0o5zaU9RJ6bcidfDtC1cWCZXQ+nvX8bf6bAji37QQ==",
|
|
2182
|
-
"license": "MIT",
|
|
2183
|
-
"engines": {
|
|
2184
|
-
"node": ">=12"
|
|
2185
|
-
}
|
|
2186
|
-
},
|
|
2187
2298
|
"node_modules/@cucumber/message-streams": {
|
|
2188
2299
|
"version": "4.0.1",
|
|
2189
2300
|
"resolved": "https://registry.npmjs.org/@cucumber/message-streams/-/message-streams-4.0.1.tgz",
|
|
@@ -4387,9 +4498,10 @@
|
|
|
4387
4498
|
}
|
|
4388
4499
|
},
|
|
4389
4500
|
"node_modules/cli-table3": {
|
|
4390
|
-
"version": "0.6.
|
|
4391
|
-
"resolved": "https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.
|
|
4392
|
-
"integrity": "sha512
|
|
4501
|
+
"version": "0.6.5",
|
|
4502
|
+
"resolved": "https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.5.tgz",
|
|
4503
|
+
"integrity": "sha512-+W/5efTR7y5HRD7gACw9yQjqMVvEMLBHmboM/kPWam+H+Hmyrgjh6YncVKK122YZkXrLudzTuAukUw9FnMf7IQ==",
|
|
4504
|
+
"license": "MIT",
|
|
4393
4505
|
"dependencies": {
|
|
4394
4506
|
"string-width": "^4.2.0"
|
|
4395
4507
|
},
|
|
@@ -7828,9 +7940,10 @@
|
|
|
7828
7940
|
}
|
|
7829
7941
|
},
|
|
7830
7942
|
"node_modules/luxon": {
|
|
7831
|
-
"version": "3.
|
|
7832
|
-
"resolved": "https://registry.npmjs.org/luxon/-/luxon-3.
|
|
7833
|
-
"integrity": "sha512-
|
|
7943
|
+
"version": "3.6.1",
|
|
7944
|
+
"resolved": "https://registry.npmjs.org/luxon/-/luxon-3.6.1.tgz",
|
|
7945
|
+
"integrity": "sha512-tJLxrKJhO2ukZ5z0gyjY1zPh3Rh88Ej9P7jNrZiHMUXHae1yvI2imgOZtL1TO8TW6biMMKfTtAOoEJANgtWBMQ==",
|
|
7946
|
+
"license": "MIT",
|
|
7834
7947
|
"engines": {
|
|
7835
7948
|
"node": ">=12"
|
|
7836
7949
|
}
|
|
@@ -8710,47 +8823,10 @@
|
|
|
8710
8823
|
"@playwright/test": ">=1.41"
|
|
8711
8824
|
}
|
|
8712
8825
|
},
|
|
8713
|
-
"node_modules/playwright-bdd/node_modules/@cucumber/gherkin-utils": {
|
|
8714
|
-
"version": "9.2.0",
|
|
8715
|
-
"resolved": "https://registry.npmjs.org/@cucumber/gherkin-utils/-/gherkin-utils-9.2.0.tgz",
|
|
8716
|
-
"integrity": "sha512-3nmRbG1bUAZP3fAaUBNmqWO0z0OSkykZZotfLjyhc8KWwDSOrOmMJlBTd474lpA8EWh4JFLAX3iXgynBqBvKzw==",
|
|
8717
|
-
"license": "MIT",
|
|
8718
|
-
"dependencies": {
|
|
8719
|
-
"@cucumber/gherkin": "^31.0.0",
|
|
8720
|
-
"@cucumber/messages": "^27.0.0",
|
|
8721
|
-
"@teppeis/multimaps": "3.0.0",
|
|
8722
|
-
"commander": "13.1.0",
|
|
8723
|
-
"source-map-support": "^0.5.21"
|
|
8724
|
-
},
|
|
8725
|
-
"bin": {
|
|
8726
|
-
"gherkin-utils": "bin/gherkin-utils"
|
|
8727
|
-
}
|
|
8728
|
-
},
|
|
8729
|
-
"node_modules/playwright-bdd/node_modules/@cucumber/gherkin-utils/node_modules/@cucumber/gherkin": {
|
|
8730
|
-
"version": "31.0.0",
|
|
8731
|
-
"resolved": "https://registry.npmjs.org/@cucumber/gherkin/-/gherkin-31.0.0.tgz",
|
|
8732
|
-
"integrity": "sha512-wlZfdPif7JpBWJdqvHk1Mkr21L5vl4EfxVUOS4JinWGf3FLRV6IKUekBv5bb5VX79fkDcfDvESzcQ8WQc07Wgw==",
|
|
8733
|
-
"license": "MIT",
|
|
8734
|
-
"dependencies": {
|
|
8735
|
-
"@cucumber/messages": ">=19.1.4 <=26"
|
|
8736
|
-
}
|
|
8737
|
-
},
|
|
8738
|
-
"node_modules/playwright-bdd/node_modules/@cucumber/gherkin-utils/node_modules/@cucumber/gherkin/node_modules/@cucumber/messages": {
|
|
8739
|
-
"version": "26.0.1",
|
|
8740
|
-
"resolved": "https://registry.npmjs.org/@cucumber/messages/-/messages-26.0.1.tgz",
|
|
8741
|
-
"integrity": "sha512-DIxSg+ZGariumO+Lq6bn4kOUIUET83A4umrnWmidjGFl8XxkBieUZtsmNbLYgH/gnsmP07EfxxdTr0hOchV1Sg==",
|
|
8742
|
-
"license": "MIT",
|
|
8743
|
-
"dependencies": {
|
|
8744
|
-
"@types/uuid": "10.0.0",
|
|
8745
|
-
"class-transformer": "0.5.1",
|
|
8746
|
-
"reflect-metadata": "0.2.2",
|
|
8747
|
-
"uuid": "10.0.0"
|
|
8748
|
-
}
|
|
8749
|
-
},
|
|
8750
8826
|
"node_modules/playwright-bdd/node_modules/@cucumber/html-formatter": {
|
|
8751
|
-
"version": "21.
|
|
8752
|
-
"resolved": "https://registry.npmjs.org/@cucumber/html-formatter/-/html-formatter-21.
|
|
8753
|
-
"integrity": "sha512-
|
|
8827
|
+
"version": "21.12.0",
|
|
8828
|
+
"resolved": "https://registry.npmjs.org/@cucumber/html-formatter/-/html-formatter-21.12.0.tgz",
|
|
8829
|
+
"integrity": "sha512-y7FPEtHkrvIJLOB7uiAWgolfTHlAnommt1nJjiqnikS+pV30JB91ez87okRr78JhXE2LzKRIiHlfUXdKnxGgeg==",
|
|
8754
8830
|
"license": "MIT",
|
|
8755
8831
|
"peerDependencies": {
|
|
8756
8832
|
"@cucumber/messages": ">=18"
|
|
@@ -8774,21 +8850,6 @@
|
|
|
8774
8850
|
"integrity": "sha512-7gqG38EyHgyP1S+7+xomFtL+ZNHcKv6DwNaCZmJmo1vgMugyF3TCnXVg4t1uk89mLNwnLtnY3TpOpCOyp1/xHQ==",
|
|
8775
8851
|
"license": "MIT"
|
|
8776
8852
|
},
|
|
8777
|
-
"node_modules/playwright-bdd/node_modules/cli-table3": {
|
|
8778
|
-
"version": "0.6.5",
|
|
8779
|
-
"resolved": "https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.5.tgz",
|
|
8780
|
-
"integrity": "sha512-+W/5efTR7y5HRD7gACw9yQjqMVvEMLBHmboM/kPWam+H+Hmyrgjh6YncVKK122YZkXrLudzTuAukUw9FnMf7IQ==",
|
|
8781
|
-
"license": "MIT",
|
|
8782
|
-
"dependencies": {
|
|
8783
|
-
"string-width": "^4.2.0"
|
|
8784
|
-
},
|
|
8785
|
-
"engines": {
|
|
8786
|
-
"node": "10.* || >= 12.*"
|
|
8787
|
-
},
|
|
8788
|
-
"optionalDependencies": {
|
|
8789
|
-
"@colors/colors": "1.5.0"
|
|
8790
|
-
}
|
|
8791
|
-
},
|
|
8792
8853
|
"node_modules/playwright-bdd/node_modules/commander": {
|
|
8793
8854
|
"version": "13.1.0",
|
|
8794
8855
|
"resolved": "https://registry.npmjs.org/commander/-/commander-13.1.0.tgz",
|
|
@@ -9354,6 +9415,7 @@
|
|
|
9354
9415
|
"version": "2.0.0",
|
|
9355
9416
|
"resolved": "https://registry.npmjs.org/resolve-pkg/-/resolve-pkg-2.0.0.tgz",
|
|
9356
9417
|
"integrity": "sha512-+1lzwXehGCXSeryaISr6WujZzowloigEofRB+dj75y9RRa/obVcYgbHJd53tdYw8pvZj8GojXaaENws8Ktw/hQ==",
|
|
9418
|
+
"license": "MIT",
|
|
9357
9419
|
"dependencies": {
|
|
9358
9420
|
"resolve-from": "^5.0.0"
|
|
9359
9421
|
},
|
|
@@ -10051,6 +10113,7 @@
|
|
|
10051
10113
|
"version": "0.2.3",
|
|
10052
10114
|
"resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.3.tgz",
|
|
10053
10115
|
"integrity": "sha512-nZD7m9iCPC5g0pYmcaxogYKggSfLsdxl8of3Q/oIbqCqLLIO9IAF0GWjX1z9NZRHPiXv8Wex4yDCaZsgEw0Y8w==",
|
|
10116
|
+
"license": "MIT",
|
|
10054
10117
|
"engines": {
|
|
10055
10118
|
"node": ">=14.14"
|
|
10056
10119
|
}
|