@zohodesk/testinglibrary 0.4.70-n18-experimental → 0.4.72-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/.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 +16 -1
- package/npm-shrinkwrap.json +104 -208
- package/package.json +5 -5
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,
|
|
@@ -60,7 +60,22 @@ class CustomJsonReporter {
|
|
|
60
60
|
const extracted = suite.suites.map(suite => extractMergedSuite(this.report.config.rootDir, suite, this.testResultsById));
|
|
61
61
|
this.report.suites.push(...extracted);
|
|
62
62
|
});
|
|
63
|
-
_fs.default.
|
|
63
|
+
const writableStream = _fs.default.createWriteStream(this.outputFile);
|
|
64
|
+
writableStream.write('{\n');
|
|
65
|
+
writableStream.write(` "config": ${JSON.stringify(this.report.config, null, 2)},\n`);
|
|
66
|
+
writableStream.write(' "suites": [\n');
|
|
67
|
+
for (let i = 0; i < this.report.suites.length; i++) {
|
|
68
|
+
const suite = this.report.suites[i];
|
|
69
|
+
let suiteStr = JSON.stringify(suite, null, 2).split('\n').map(line => ' ' + line).join('\n');
|
|
70
|
+
if (i < this.report.suites.length - 1) {
|
|
71
|
+
suiteStr += ',';
|
|
72
|
+
}
|
|
73
|
+
suiteStr += '\n';
|
|
74
|
+
writableStream.write(suiteStr);
|
|
75
|
+
}
|
|
76
|
+
writableStream.write(' ]\n');
|
|
77
|
+
writableStream.write('}\n');
|
|
78
|
+
writableStream.end();
|
|
64
79
|
console.log(`Custom JSON report written to: ${this.outputFile}`);
|
|
65
80
|
}
|
|
66
81
|
}
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zohodesk/testinglibrary",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.72-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.72-n18-experimental",
|
|
10
10
|
"hasInstallScript": true,
|
|
11
11
|
"license": "ISC",
|
|
12
12
|
"dependencies": {
|
|
13
13
|
"@babel/code-frame": "7.27.1",
|
|
14
14
|
"@babel/preset-react": "7.22.5",
|
|
15
|
-
"@cucumber/cucumber": "11.
|
|
16
|
-
"@playwright/test": "1.53.
|
|
15
|
+
"@cucumber/cucumber": "11.3.0",
|
|
16
|
+
"@playwright/test": "1.53.2",
|
|
17
17
|
"@reportportal/agent-js-playwright": "5.1.11",
|
|
18
18
|
"@testing-library/jest-dom": "5.11.9",
|
|
19
19
|
"@testing-library/react": "11.2.7",
|
|
@@ -24,8 +24,8 @@
|
|
|
24
24
|
"jest": "29.6.2",
|
|
25
25
|
"jest-environment-jsdom": "29.6.2",
|
|
26
26
|
"msw": "1.2.3",
|
|
27
|
-
"playwright": "1.53.
|
|
28
|
-
"playwright-bdd": "8.
|
|
27
|
+
"playwright": "1.53.2",
|
|
28
|
+
"playwright-bdd": "8.3.1",
|
|
29
29
|
"supports-color": "8.1.1"
|
|
30
30
|
},
|
|
31
31
|
"bin": {
|
|
@@ -1845,25 +1845,25 @@
|
|
|
1845
1845
|
"license": "MIT"
|
|
1846
1846
|
},
|
|
1847
1847
|
"node_modules/@cucumber/cucumber": {
|
|
1848
|
-
"version": "11.
|
|
1849
|
-
"resolved": "https://registry.npmjs.org/@cucumber/cucumber/-/cucumber-11.
|
|
1850
|
-
"integrity": "sha512-
|
|
1848
|
+
"version": "11.3.0",
|
|
1849
|
+
"resolved": "https://registry.npmjs.org/@cucumber/cucumber/-/cucumber-11.3.0.tgz",
|
|
1850
|
+
"integrity": "sha512-1YGsoAzRfDyVOnRMTSZP/EcFsOBElOKa2r+5nin0DJAeK+Mp0mzjcmSllMgApGtck7Ji87wwy3kFONfHUHMn4g==",
|
|
1851
1851
|
"license": "MIT",
|
|
1852
1852
|
"dependencies": {
|
|
1853
1853
|
"@cucumber/ci-environment": "10.0.1",
|
|
1854
1854
|
"@cucumber/cucumber-expressions": "18.0.1",
|
|
1855
1855
|
"@cucumber/gherkin": "30.0.4",
|
|
1856
1856
|
"@cucumber/gherkin-streams": "5.0.1",
|
|
1857
|
-
"@cucumber/gherkin-utils": "9.
|
|
1858
|
-
"@cucumber/html-formatter": "21.
|
|
1857
|
+
"@cucumber/gherkin-utils": "9.2.0",
|
|
1858
|
+
"@cucumber/html-formatter": "21.10.1",
|
|
1859
1859
|
"@cucumber/junit-xml-formatter": "0.7.1",
|
|
1860
1860
|
"@cucumber/message-streams": "4.0.1",
|
|
1861
|
-
"@cucumber/messages": "27.0
|
|
1862
|
-
"@cucumber/tag-expressions": "6.1.
|
|
1861
|
+
"@cucumber/messages": "27.2.0",
|
|
1862
|
+
"@cucumber/tag-expressions": "6.1.2",
|
|
1863
1863
|
"assertion-error-formatter": "^3.0.0",
|
|
1864
1864
|
"capital-case": "^1.0.4",
|
|
1865
1865
|
"chalk": "^4.1.2",
|
|
1866
|
-
"cli-table3": "0.6.
|
|
1866
|
+
"cli-table3": "0.6.5",
|
|
1867
1867
|
"commander": "^10.0.0",
|
|
1868
1868
|
"debug": "^4.3.4",
|
|
1869
1869
|
"error-stack-parser": "^2.1.4",
|
|
@@ -1876,21 +1876,19 @@
|
|
|
1876
1876
|
"knuth-shuffle-seeded": "^1.0.6",
|
|
1877
1877
|
"lodash.merge": "^4.6.2",
|
|
1878
1878
|
"lodash.mergewith": "^4.6.2",
|
|
1879
|
-
"luxon": "3.
|
|
1879
|
+
"luxon": "3.6.1",
|
|
1880
1880
|
"mime": "^3.0.0",
|
|
1881
1881
|
"mkdirp": "^2.1.5",
|
|
1882
1882
|
"mz": "^2.7.0",
|
|
1883
1883
|
"progress": "^2.0.3",
|
|
1884
1884
|
"read-package-up": "^11.0.0",
|
|
1885
|
-
"
|
|
1886
|
-
"semver": "7.5.3",
|
|
1885
|
+
"semver": "7.7.1",
|
|
1887
1886
|
"string-argv": "0.3.1",
|
|
1888
1887
|
"supports-color": "^8.1.1",
|
|
1889
|
-
"
|
|
1890
|
-
"type-fest": "^4.8.3",
|
|
1888
|
+
"type-fest": "^4.41.0",
|
|
1891
1889
|
"util-arity": "^1.1.0",
|
|
1892
1890
|
"yaml": "^2.2.2",
|
|
1893
|
-
"yup": "1.
|
|
1891
|
+
"yup": "1.6.1"
|
|
1894
1892
|
},
|
|
1895
1893
|
"bin": {
|
|
1896
1894
|
"cucumber-js": "bin/cucumber.js"
|
|
@@ -1911,88 +1909,16 @@
|
|
|
1911
1909
|
"regexp-match-indices": "1.0.2"
|
|
1912
1910
|
}
|
|
1913
1911
|
},
|
|
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
|
-
},
|
|
1986
1912
|
"node_modules/@cucumber/cucumber/node_modules/@cucumber/messages": {
|
|
1987
|
-
"version": "27.0
|
|
1988
|
-
"resolved": "https://registry.npmjs.org/@cucumber/messages/-/messages-27.0.
|
|
1989
|
-
"integrity": "sha512-
|
|
1913
|
+
"version": "27.2.0",
|
|
1914
|
+
"resolved": "https://registry.npmjs.org/@cucumber/messages/-/messages-27.2.0.tgz",
|
|
1915
|
+
"integrity": "sha512-f2o/HqKHgsqzFLdq6fAhfG1FNOQPdBdyMGpKwhb7hZqg0yZtx9BVqkTyuoNk83Fcvk3wjMVfouFXXHNEk4nddA==",
|
|
1990
1916
|
"license": "MIT",
|
|
1991
1917
|
"dependencies": {
|
|
1992
1918
|
"@types/uuid": "10.0.0",
|
|
1993
1919
|
"class-transformer": "0.5.1",
|
|
1994
1920
|
"reflect-metadata": "0.2.2",
|
|
1995
|
-
"uuid": "
|
|
1921
|
+
"uuid": "11.0.5"
|
|
1996
1922
|
}
|
|
1997
1923
|
},
|
|
1998
1924
|
"node_modules/@cucumber/cucumber/node_modules/@types/uuid": {
|
|
@@ -2010,21 +1936,6 @@
|
|
|
2010
1936
|
"balanced-match": "^1.0.0"
|
|
2011
1937
|
}
|
|
2012
1938
|
},
|
|
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
|
-
},
|
|
2028
1939
|
"node_modules/@cucumber/cucumber/node_modules/commander": {
|
|
2029
1940
|
"version": "10.0.1",
|
|
2030
1941
|
"resolved": "https://registry.npmjs.org/commander/-/commander-10.0.1.tgz",
|
|
@@ -2053,27 +1964,6 @@
|
|
|
2053
1964
|
"url": "https://github.com/sponsors/isaacs"
|
|
2054
1965
|
}
|
|
2055
1966
|
},
|
|
2056
|
-
"node_modules/@cucumber/cucumber/node_modules/lru-cache": {
|
|
2057
|
-
"version": "6.0.0",
|
|
2058
|
-
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz",
|
|
2059
|
-
"integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
|
|
2060
|
-
"license": "ISC",
|
|
2061
|
-
"dependencies": {
|
|
2062
|
-
"yallist": "^4.0.0"
|
|
2063
|
-
},
|
|
2064
|
-
"engines": {
|
|
2065
|
-
"node": ">=10"
|
|
2066
|
-
}
|
|
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
|
-
},
|
|
2077
1967
|
"node_modules/@cucumber/cucumber/node_modules/minimatch": {
|
|
2078
1968
|
"version": "9.0.5",
|
|
2079
1969
|
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz",
|
|
@@ -2096,13 +1986,10 @@
|
|
|
2096
1986
|
"license": "Apache-2.0"
|
|
2097
1987
|
},
|
|
2098
1988
|
"node_modules/@cucumber/cucumber/node_modules/semver": {
|
|
2099
|
-
"version": "7.
|
|
2100
|
-
"resolved": "https://registry.npmjs.org/semver/-/semver-7.
|
|
2101
|
-
"integrity": "sha512-
|
|
1989
|
+
"version": "7.7.1",
|
|
1990
|
+
"resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz",
|
|
1991
|
+
"integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==",
|
|
2102
1992
|
"license": "ISC",
|
|
2103
|
-
"dependencies": {
|
|
2104
|
-
"lru-cache": "^6.0.0"
|
|
2105
|
-
},
|
|
2106
1993
|
"bin": {
|
|
2107
1994
|
"semver": "bin/semver.js"
|
|
2108
1995
|
},
|
|
@@ -2123,24 +2010,18 @@
|
|
|
2123
2010
|
}
|
|
2124
2011
|
},
|
|
2125
2012
|
"node_modules/@cucumber/cucumber/node_modules/uuid": {
|
|
2126
|
-
"version": "
|
|
2127
|
-
"resolved": "https://registry.npmjs.org/uuid/-/uuid-
|
|
2128
|
-
"integrity": "sha512-
|
|
2013
|
+
"version": "11.0.5",
|
|
2014
|
+
"resolved": "https://registry.npmjs.org/uuid/-/uuid-11.0.5.tgz",
|
|
2015
|
+
"integrity": "sha512-508e6IcKLrhxKdBbcA2b4KQZlLVp2+J5UwQ6F7Drckkc5N9ZJwFa4TgWtsww9UG8fGHbm6gbV19TdM5pQ4GaIA==",
|
|
2129
2016
|
"funding": [
|
|
2130
2017
|
"https://github.com/sponsors/broofa",
|
|
2131
2018
|
"https://github.com/sponsors/ctavan"
|
|
2132
2019
|
],
|
|
2133
2020
|
"license": "MIT",
|
|
2134
2021
|
"bin": {
|
|
2135
|
-
"uuid": "dist/bin/uuid"
|
|
2022
|
+
"uuid": "dist/esm/bin/uuid"
|
|
2136
2023
|
}
|
|
2137
2024
|
},
|
|
2138
|
-
"node_modules/@cucumber/cucumber/node_modules/yallist": {
|
|
2139
|
-
"version": "4.0.0",
|
|
2140
|
-
"resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
|
|
2141
|
-
"integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
|
|
2142
|
-
"license": "ISC"
|
|
2143
|
-
},
|
|
2144
2025
|
"node_modules/@cucumber/gherkin": {
|
|
2145
2026
|
"version": "30.0.4",
|
|
2146
2027
|
"resolved": "https://registry.npmjs.org/@cucumber/gherkin/-/gherkin-30.0.4.tgz",
|
|
@@ -2272,9 +2153,9 @@
|
|
|
2272
2153
|
}
|
|
2273
2154
|
},
|
|
2274
2155
|
"node_modules/@cucumber/html-formatter": {
|
|
2275
|
-
"version": "21.
|
|
2276
|
-
"resolved": "https://registry.npmjs.org/@cucumber/html-formatter/-/html-formatter-21.
|
|
2277
|
-
"integrity": "sha512-
|
|
2156
|
+
"version": "21.10.1",
|
|
2157
|
+
"resolved": "https://registry.npmjs.org/@cucumber/html-formatter/-/html-formatter-21.10.1.tgz",
|
|
2158
|
+
"integrity": "sha512-isaaNMNnBYThsvaHy7i+9kkk9V3+rhgdkt0pd6TCY6zY1CSRZQ7tG6ST9pYyRaECyfbCeF7UGH0KpNEnh6UNvQ==",
|
|
2278
2159
|
"license": "MIT",
|
|
2279
2160
|
"peerDependencies": {
|
|
2280
2161
|
"@cucumber/messages": ">=18"
|
|
@@ -2327,9 +2208,9 @@
|
|
|
2327
2208
|
}
|
|
2328
2209
|
},
|
|
2329
2210
|
"node_modules/@cucumber/tag-expressions": {
|
|
2330
|
-
"version": "6.1.
|
|
2331
|
-
"resolved": "https://registry.npmjs.org/@cucumber/tag-expressions/-/tag-expressions-6.1.
|
|
2332
|
-
"integrity": "sha512-
|
|
2211
|
+
"version": "6.1.2",
|
|
2212
|
+
"resolved": "https://registry.npmjs.org/@cucumber/tag-expressions/-/tag-expressions-6.1.2.tgz",
|
|
2213
|
+
"integrity": "sha512-xa3pER+ntZhGCxRXSguDTKEHTZpUUsp+RzTRNnit+vi5cqnk6abLdSLg5i3HZXU3c74nQ8afQC6IT507EN74oQ==",
|
|
2333
2214
|
"license": "MIT"
|
|
2334
2215
|
},
|
|
2335
2216
|
"node_modules/@eslint-community/eslint-utils": {
|
|
@@ -3206,12 +3087,12 @@
|
|
|
3206
3087
|
}
|
|
3207
3088
|
},
|
|
3208
3089
|
"node_modules/@playwright/test": {
|
|
3209
|
-
"version": "1.53.
|
|
3210
|
-
"resolved": "https://registry.npmjs.org/@playwright/test/-/test-1.53.
|
|
3211
|
-
"integrity": "sha512-
|
|
3090
|
+
"version": "1.53.2",
|
|
3091
|
+
"resolved": "https://registry.npmjs.org/@playwright/test/-/test-1.53.2.tgz",
|
|
3092
|
+
"integrity": "sha512-tEB2U5z74ebBeyfGNZ3Jfg29AnW+5HlWhvHtb/Mqco9pFdZU1ZLNdVb2UtB5CvmiilNr2ZfVH/qMmAROG/XTzw==",
|
|
3212
3093
|
"license": "Apache-2.0",
|
|
3213
3094
|
"dependencies": {
|
|
3214
|
-
"playwright": "1.53.
|
|
3095
|
+
"playwright": "1.53.2"
|
|
3215
3096
|
},
|
|
3216
3097
|
"bin": {
|
|
3217
3098
|
"playwright": "cli.js"
|
|
@@ -8774,12 +8655,12 @@
|
|
|
8774
8655
|
}
|
|
8775
8656
|
},
|
|
8776
8657
|
"node_modules/playwright": {
|
|
8777
|
-
"version": "1.53.
|
|
8778
|
-
"resolved": "https://registry.npmjs.org/playwright/-/playwright-1.53.
|
|
8779
|
-
"integrity": "sha512-
|
|
8658
|
+
"version": "1.53.2",
|
|
8659
|
+
"resolved": "https://registry.npmjs.org/playwright/-/playwright-1.53.2.tgz",
|
|
8660
|
+
"integrity": "sha512-6K/qQxVFuVQhRQhFsVZ9fGeatxirtrpPgxzBYWyZLEXJzqYwuL4fuNmfOfD5et1tJE4GScKyPNeLhZeRwuTU3A==",
|
|
8780
8661
|
"license": "Apache-2.0",
|
|
8781
8662
|
"dependencies": {
|
|
8782
|
-
"playwright-core": "1.53.
|
|
8663
|
+
"playwright-core": "1.53.2"
|
|
8783
8664
|
},
|
|
8784
8665
|
"bin": {
|
|
8785
8666
|
"playwright": "cli.js"
|
|
@@ -8792,22 +8673,22 @@
|
|
|
8792
8673
|
}
|
|
8793
8674
|
},
|
|
8794
8675
|
"node_modules/playwright-bdd": {
|
|
8795
|
-
"version": "8.
|
|
8796
|
-
"resolved": "https://registry.npmjs.org/playwright-bdd/-/playwright-bdd-8.
|
|
8797
|
-
"integrity": "sha512-
|
|
8676
|
+
"version": "8.3.1",
|
|
8677
|
+
"resolved": "https://registry.npmjs.org/playwright-bdd/-/playwright-bdd-8.3.1.tgz",
|
|
8678
|
+
"integrity": "sha512-CCmyTJwYcID8TUVmKQ0NiPlKpnvoAIXK8+nrmOYHAG8AI64xL43TAJ1dG19upRyrXozz6/bP6VwWzrpcxpFcNA==",
|
|
8798
8679
|
"license": "MIT",
|
|
8799
8680
|
"dependencies": {
|
|
8800
8681
|
"@cucumber/cucumber-expressions": "18.0.1",
|
|
8801
|
-
"@cucumber/gherkin": "
|
|
8802
|
-
"@cucumber/gherkin-
|
|
8803
|
-
"@cucumber/
|
|
8804
|
-
"@cucumber/
|
|
8805
|
-
"@cucumber/messages": "27.0
|
|
8806
|
-
"@cucumber/tag-expressions": "6.
|
|
8682
|
+
"@cucumber/gherkin": "^32.1.2",
|
|
8683
|
+
"@cucumber/gherkin-utils": "^9.2.0",
|
|
8684
|
+
"@cucumber/html-formatter": "^21.11.0",
|
|
8685
|
+
"@cucumber/junit-xml-formatter": "^0.7.1",
|
|
8686
|
+
"@cucumber/messages": "^27.2.0",
|
|
8687
|
+
"@cucumber/tag-expressions": "^6.2.0",
|
|
8807
8688
|
"cli-table3": "0.6.5",
|
|
8808
8689
|
"commander": "^13.1.0",
|
|
8809
8690
|
"fast-glob": "^3.3.3",
|
|
8810
|
-
"mime-types": "
|
|
8691
|
+
"mime-types": "^3.0.1",
|
|
8811
8692
|
"xmlbuilder": "15.1.1"
|
|
8812
8693
|
},
|
|
8813
8694
|
"bin": {
|
|
@@ -8820,7 +8701,16 @@
|
|
|
8820
8701
|
"url": "https://github.com/sponsors/vitalets"
|
|
8821
8702
|
},
|
|
8822
8703
|
"peerDependencies": {
|
|
8823
|
-
"@playwright/test": ">=1.
|
|
8704
|
+
"@playwright/test": ">=1.42"
|
|
8705
|
+
}
|
|
8706
|
+
},
|
|
8707
|
+
"node_modules/playwright-bdd/node_modules/@cucumber/gherkin": {
|
|
8708
|
+
"version": "32.1.2",
|
|
8709
|
+
"resolved": "https://registry.npmjs.org/@cucumber/gherkin/-/gherkin-32.1.2.tgz",
|
|
8710
|
+
"integrity": "sha512-hj1DcaiIpXJg+mo58zpQyP8c6YsUY/NIOK8oWg1XxbXAWkuYNWr9kkM+i8Xxg1yT6YEzn1loLBG6GjL6SPYOZQ==",
|
|
8711
|
+
"license": "MIT",
|
|
8712
|
+
"dependencies": {
|
|
8713
|
+
"@cucumber/messages": ">=19.1.4 <28"
|
|
8824
8714
|
}
|
|
8825
8715
|
},
|
|
8826
8716
|
"node_modules/playwright-bdd/node_modules/@cucumber/html-formatter": {
|
|
@@ -8833,17 +8723,23 @@
|
|
|
8833
8723
|
}
|
|
8834
8724
|
},
|
|
8835
8725
|
"node_modules/playwright-bdd/node_modules/@cucumber/messages": {
|
|
8836
|
-
"version": "27.0
|
|
8837
|
-
"resolved": "https://registry.npmjs.org/@cucumber/messages/-/messages-27.0.
|
|
8838
|
-
"integrity": "sha512-
|
|
8726
|
+
"version": "27.2.0",
|
|
8727
|
+
"resolved": "https://registry.npmjs.org/@cucumber/messages/-/messages-27.2.0.tgz",
|
|
8728
|
+
"integrity": "sha512-f2o/HqKHgsqzFLdq6fAhfG1FNOQPdBdyMGpKwhb7hZqg0yZtx9BVqkTyuoNk83Fcvk3wjMVfouFXXHNEk4nddA==",
|
|
8839
8729
|
"license": "MIT",
|
|
8840
8730
|
"dependencies": {
|
|
8841
8731
|
"@types/uuid": "10.0.0",
|
|
8842
8732
|
"class-transformer": "0.5.1",
|
|
8843
8733
|
"reflect-metadata": "0.2.2",
|
|
8844
|
-
"uuid": "
|
|
8734
|
+
"uuid": "11.0.5"
|
|
8845
8735
|
}
|
|
8846
8736
|
},
|
|
8737
|
+
"node_modules/playwright-bdd/node_modules/@cucumber/tag-expressions": {
|
|
8738
|
+
"version": "6.2.0",
|
|
8739
|
+
"resolved": "https://registry.npmjs.org/@cucumber/tag-expressions/-/tag-expressions-6.2.0.tgz",
|
|
8740
|
+
"integrity": "sha512-KIF0eLcafHbWOuSDWFw0lMmgJOLdDRWjEL1kfXEWrqHmx2119HxVAr35WuEd9z542d3Yyg+XNqSr+81rIKqEdg==",
|
|
8741
|
+
"license": "MIT"
|
|
8742
|
+
},
|
|
8847
8743
|
"node_modules/playwright-bdd/node_modules/@types/uuid": {
|
|
8848
8744
|
"version": "10.0.0",
|
|
8849
8745
|
"resolved": "https://registry.npmjs.org/@types/uuid/-/uuid-10.0.0.tgz",
|
|
@@ -8875,6 +8771,27 @@
|
|
|
8875
8771
|
"node": ">=8.6.0"
|
|
8876
8772
|
}
|
|
8877
8773
|
},
|
|
8774
|
+
"node_modules/playwright-bdd/node_modules/mime-db": {
|
|
8775
|
+
"version": "1.54.0",
|
|
8776
|
+
"resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.54.0.tgz",
|
|
8777
|
+
"integrity": "sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==",
|
|
8778
|
+
"license": "MIT",
|
|
8779
|
+
"engines": {
|
|
8780
|
+
"node": ">= 0.6"
|
|
8781
|
+
}
|
|
8782
|
+
},
|
|
8783
|
+
"node_modules/playwright-bdd/node_modules/mime-types": {
|
|
8784
|
+
"version": "3.0.1",
|
|
8785
|
+
"resolved": "https://registry.npmjs.org/mime-types/-/mime-types-3.0.1.tgz",
|
|
8786
|
+
"integrity": "sha512-xRc4oEhT6eaBpU1XF7AjpOFD+xQmXNB5OVKwp4tqCuBpHLS/ZbBDrc07mYTDqVMg6PfxUjjNp85O6Cd2Z/5HWA==",
|
|
8787
|
+
"license": "MIT",
|
|
8788
|
+
"dependencies": {
|
|
8789
|
+
"mime-db": "^1.54.0"
|
|
8790
|
+
},
|
|
8791
|
+
"engines": {
|
|
8792
|
+
"node": ">= 0.6"
|
|
8793
|
+
}
|
|
8794
|
+
},
|
|
8878
8795
|
"node_modules/playwright-bdd/node_modules/reflect-metadata": {
|
|
8879
8796
|
"version": "0.2.2",
|
|
8880
8797
|
"resolved": "https://registry.npmjs.org/reflect-metadata/-/reflect-metadata-0.2.2.tgz",
|
|
@@ -8882,22 +8799,22 @@
|
|
|
8882
8799
|
"license": "Apache-2.0"
|
|
8883
8800
|
},
|
|
8884
8801
|
"node_modules/playwright-bdd/node_modules/uuid": {
|
|
8885
|
-
"version": "
|
|
8886
|
-
"resolved": "https://registry.npmjs.org/uuid/-/uuid-
|
|
8887
|
-
"integrity": "sha512-
|
|
8802
|
+
"version": "11.0.5",
|
|
8803
|
+
"resolved": "https://registry.npmjs.org/uuid/-/uuid-11.0.5.tgz",
|
|
8804
|
+
"integrity": "sha512-508e6IcKLrhxKdBbcA2b4KQZlLVp2+J5UwQ6F7Drckkc5N9ZJwFa4TgWtsww9UG8fGHbm6gbV19TdM5pQ4GaIA==",
|
|
8888
8805
|
"funding": [
|
|
8889
8806
|
"https://github.com/sponsors/broofa",
|
|
8890
8807
|
"https://github.com/sponsors/ctavan"
|
|
8891
8808
|
],
|
|
8892
8809
|
"license": "MIT",
|
|
8893
8810
|
"bin": {
|
|
8894
|
-
"uuid": "dist/bin/uuid"
|
|
8811
|
+
"uuid": "dist/esm/bin/uuid"
|
|
8895
8812
|
}
|
|
8896
8813
|
},
|
|
8897
8814
|
"node_modules/playwright-core": {
|
|
8898
|
-
"version": "1.53.
|
|
8899
|
-
"resolved": "https://registry.npmjs.org/playwright-core/-/playwright-core-1.53.
|
|
8900
|
-
"integrity": "sha512-
|
|
8815
|
+
"version": "1.53.2",
|
|
8816
|
+
"resolved": "https://registry.npmjs.org/playwright-core/-/playwright-core-1.53.2.tgz",
|
|
8817
|
+
"integrity": "sha512-ox/OytMy+2w1jcYEYlOo1Hhp8hZkLCximMTUTMBXjGUA1KoFfiSZ+DU+3a739jsPY0yoKH2TFy9S2fsJas8yAw==",
|
|
8901
8818
|
"license": "Apache-2.0",
|
|
8902
8819
|
"bin": {
|
|
8903
8820
|
"playwright-core": "cli.js"
|
|
@@ -9411,18 +9328,6 @@
|
|
|
9411
9328
|
"node": ">=8"
|
|
9412
9329
|
}
|
|
9413
9330
|
},
|
|
9414
|
-
"node_modules/resolve-pkg": {
|
|
9415
|
-
"version": "2.0.0",
|
|
9416
|
-
"resolved": "https://registry.npmjs.org/resolve-pkg/-/resolve-pkg-2.0.0.tgz",
|
|
9417
|
-
"integrity": "sha512-+1lzwXehGCXSeryaISr6WujZzowloigEofRB+dj75y9RRa/obVcYgbHJd53tdYw8pvZj8GojXaaENws8Ktw/hQ==",
|
|
9418
|
-
"license": "MIT",
|
|
9419
|
-
"dependencies": {
|
|
9420
|
-
"resolve-from": "^5.0.0"
|
|
9421
|
-
},
|
|
9422
|
-
"engines": {
|
|
9423
|
-
"node": ">=8"
|
|
9424
|
-
}
|
|
9425
|
-
},
|
|
9426
9331
|
"node_modules/resolve.exports": {
|
|
9427
9332
|
"version": "2.0.3",
|
|
9428
9333
|
"resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.3.tgz",
|
|
@@ -10109,15 +10014,6 @@
|
|
|
10109
10014
|
"integrity": "sha512-Eet/eeMhkO6TX8mnUteS9zgPbUMQa4I6Kkp5ORiBD5476/m+PIRiumP5tmh5ioJpH7k51Kehawy2UDfsnxxY8Q==",
|
|
10110
10015
|
"license": "MIT"
|
|
10111
10016
|
},
|
|
10112
|
-
"node_modules/tmp": {
|
|
10113
|
-
"version": "0.2.3",
|
|
10114
|
-
"resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.3.tgz",
|
|
10115
|
-
"integrity": "sha512-nZD7m9iCPC5g0pYmcaxogYKggSfLsdxl8of3Q/oIbqCqLLIO9IAF0GWjX1z9NZRHPiXv8Wex4yDCaZsgEw0Y8w==",
|
|
10116
|
-
"license": "MIT",
|
|
10117
|
-
"engines": {
|
|
10118
|
-
"node": ">=14.14"
|
|
10119
|
-
}
|
|
10120
|
-
},
|
|
10121
10017
|
"node_modules/tmpl": {
|
|
10122
10018
|
"version": "1.0.5",
|
|
10123
10019
|
"resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz",
|
|
@@ -10846,9 +10742,9 @@
|
|
|
10846
10742
|
}
|
|
10847
10743
|
},
|
|
10848
10744
|
"node_modules/yup": {
|
|
10849
|
-
"version": "1.
|
|
10850
|
-
"resolved": "https://registry.npmjs.org/yup/-/yup-1.
|
|
10851
|
-
"integrity": "sha512-
|
|
10745
|
+
"version": "1.6.1",
|
|
10746
|
+
"resolved": "https://registry.npmjs.org/yup/-/yup-1.6.1.tgz",
|
|
10747
|
+
"integrity": "sha512-JED8pB50qbA4FOkDol0bYF/p60qSEDQqBD0/qeIrUCG1KbPBIQ776fCUNb9ldbPcSTxA69g/47XTo4TqWiuXOA==",
|
|
10852
10748
|
"license": "MIT",
|
|
10853
10749
|
"dependencies": {
|
|
10854
10750
|
"property-expr": "^2.0.5",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zohodesk/testinglibrary",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.72-n18-experimental",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "./build/index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -23,8 +23,8 @@
|
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"@babel/code-frame": "7.27.1",
|
|
25
25
|
"@babel/preset-react": "7.22.5",
|
|
26
|
-
"@cucumber/cucumber": "11.
|
|
27
|
-
"@playwright/test": "1.53.
|
|
26
|
+
"@cucumber/cucumber": "11.3.0",
|
|
27
|
+
"@playwright/test": "1.53.2",
|
|
28
28
|
"@reportportal/agent-js-playwright": "5.1.11",
|
|
29
29
|
"@testing-library/jest-dom": "5.11.9",
|
|
30
30
|
"@testing-library/react": "11.2.7",
|
|
@@ -35,9 +35,9 @@
|
|
|
35
35
|
"jest": "29.6.2",
|
|
36
36
|
"jest-environment-jsdom": "29.6.2",
|
|
37
37
|
"msw": "1.2.3",
|
|
38
|
-
"playwright": "1.53.
|
|
38
|
+
"playwright": "1.53.2",
|
|
39
39
|
"supports-color": "8.1.1",
|
|
40
|
-
"playwright-bdd": "8.
|
|
40
|
+
"playwright-bdd": "8.3.1"
|
|
41
41
|
},
|
|
42
42
|
"bin": {
|
|
43
43
|
"ZDTestingFramework": "./bin/cli.js"
|