@zohodesk/testinglibrary 0.1.4-exp.9 → 0.1.5
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/bdd-framework/snippets/index.js +0 -1
- package/build/bdd-framework/stepDefinitions/createDecorators.js +0 -1
- package/build/bdd-framework/stepDefinitions/decorators/steps.js +0 -1
- package/build/core/playwright/index.js +0 -1
- package/build/index.d.ts +4 -2
- package/build/parser/parser.js +0 -1
- package/changelog.md +22 -0
- package/npm-shrinkwrap.json +122 -122
- package/package.json +4 -4
|
@@ -65,7 +65,6 @@ function appendDecoratorSteps(supportCodeLibrary) {
|
|
|
65
65
|
decoratedSteps.clear();
|
|
66
66
|
// todo: fill supportCodeLibrary.originalCoordinates as it is used in snippets?
|
|
67
67
|
}
|
|
68
|
-
|
|
69
68
|
function getPomNodeByFixtureName(fixtureName) {
|
|
70
69
|
for (const pomNode of pomGraph.values()) {
|
|
71
70
|
if (pomNode.fixtureName === fixtureName) return pomNode;
|
|
@@ -73,7 +73,6 @@ function appendDecoratorSteps(supportCodeLibrary) {
|
|
|
73
73
|
decoratedSteps.clear();
|
|
74
74
|
// todo: fill supportCodeLibrary.originalCoordinates as it is used in snippets?
|
|
75
75
|
}
|
|
76
|
-
|
|
77
76
|
function getFirstNonAutoInjectFixture(fixturesArg, stepConfig) {
|
|
78
77
|
// there should be exatcly one suitable fixture in fixturesArg
|
|
79
78
|
const fixtureNames = Object.keys(fixturesArg).filter(fixtureName => !(0, _bddFixtures.isBddAutoInjectFixture)(fixtureName));
|
package/build/index.d.ts
CHANGED
|
@@ -5,8 +5,10 @@ import {
|
|
|
5
5
|
PlaywrightTestOptions,
|
|
6
6
|
PlaywrightWorkerArgs,
|
|
7
7
|
PlaywrightWorkerOptions,
|
|
8
|
-
TestType
|
|
8
|
+
TestType,
|
|
9
|
+
Page
|
|
9
10
|
} from '@playwright/test';
|
|
11
|
+
import { DefineStepPattern } from '@cucumber/cucumber/lib/support_code_library_builder/types';
|
|
10
12
|
|
|
11
13
|
export type KeyValue = { [key: string]: any };
|
|
12
14
|
|
|
@@ -53,6 +55,6 @@ type StepFunction<T extends KeyValue, W extends KeyValue> = (
|
|
|
53
55
|
|
|
54
56
|
const { Given, Then, When, Step, And, But } = createBdd();
|
|
55
57
|
|
|
56
|
-
export { Given, Then, When, Step, And, But, expect, test, createBdd };
|
|
58
|
+
export { Given, Then, When, Step, And, But, expect, test, createBdd, Page };
|
|
57
59
|
|
|
58
60
|
export * from '@playwright/test/types/test';
|
package/build/parser/parser.js
CHANGED
package/changelog.md
CHANGED
|
@@ -2,6 +2,28 @@
|
|
|
2
2
|
|
|
3
3
|
## Framework that abstracts the configuration for playwright and Jest
|
|
4
4
|
|
|
5
|
+
# 0.1.5
|
|
6
|
+
|
|
7
|
+
**Enhancements**
|
|
8
|
+
|
|
9
|
+
- Playwright version updated to `1.40.1`
|
|
10
|
+
- And and But Support added
|
|
11
|
+
- Added Code Suggestions support
|
|
12
|
+
- Custom Reporter added. Now the report will be available in json format.
|
|
13
|
+
- New Commands added.
|
|
14
|
+
|
|
15
|
+
`- help: npx ZDTestingFramework help`
|
|
16
|
+
|
|
17
|
+
- Will list down the commands available in the tool
|
|
18
|
+
|
|
19
|
+
`- clearCaches: npx ZDTestingFramework clearCaches`
|
|
20
|
+
|
|
21
|
+
- Will clear the exisiting cookies in the authentication setup
|
|
22
|
+
|
|
23
|
+
**Issue Fixes**
|
|
24
|
+
|
|
25
|
+
- Fixed Issue that occurs while quitting node process.
|
|
26
|
+
|
|
5
27
|
# 0.1.4
|
|
6
28
|
|
|
7
29
|
- `testIdAttribute` config added
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zohodesk/testinglibrary",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.5",
|
|
4
4
|
"lockfileVersion": 1,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"dependencies": {
|
|
@@ -67,9 +67,9 @@
|
|
|
67
67
|
}
|
|
68
68
|
},
|
|
69
69
|
"@babel/code-frame": {
|
|
70
|
-
"version": "7.23.
|
|
71
|
-
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.23.
|
|
72
|
-
"integrity": "sha512-
|
|
70
|
+
"version": "7.23.5",
|
|
71
|
+
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.23.5.tgz",
|
|
72
|
+
"integrity": "sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==",
|
|
73
73
|
"requires": {
|
|
74
74
|
"@babel/highlight": "^7.23.4",
|
|
75
75
|
"chalk": "^2.4.2"
|
|
@@ -122,9 +122,9 @@
|
|
|
122
122
|
}
|
|
123
123
|
},
|
|
124
124
|
"@babel/compat-data": {
|
|
125
|
-
"version": "7.23.
|
|
126
|
-
"resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.23.
|
|
127
|
-
"integrity": "sha512-
|
|
125
|
+
"version": "7.23.5",
|
|
126
|
+
"resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.23.5.tgz",
|
|
127
|
+
"integrity": "sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw=="
|
|
128
128
|
},
|
|
129
129
|
"@babel/core": {
|
|
130
130
|
"version": "7.22.17",
|
|
@@ -164,11 +164,11 @@
|
|
|
164
164
|
}
|
|
165
165
|
},
|
|
166
166
|
"@babel/generator": {
|
|
167
|
-
"version": "7.23.
|
|
168
|
-
"resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.23.
|
|
169
|
-
"integrity": "sha512-
|
|
167
|
+
"version": "7.23.5",
|
|
168
|
+
"resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.23.5.tgz",
|
|
169
|
+
"integrity": "sha512-BPssCHrBD+0YrxviOa3QzpqwhNIXKEtOa2jQrm4FlmkC2apYgRnQcmPWiGZDlGxiNtltnUFolMe8497Esry+jA==",
|
|
170
170
|
"requires": {
|
|
171
|
-
"@babel/types": "^7.23.
|
|
171
|
+
"@babel/types": "^7.23.5",
|
|
172
172
|
"@jridgewell/gen-mapping": "^0.3.2",
|
|
173
173
|
"@jridgewell/trace-mapping": "^0.3.17",
|
|
174
174
|
"jsesc": "^2.5.1"
|
|
@@ -224,17 +224,17 @@
|
|
|
224
224
|
}
|
|
225
225
|
},
|
|
226
226
|
"@babel/helper-create-class-features-plugin": {
|
|
227
|
-
"version": "7.
|
|
228
|
-
"resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.
|
|
229
|
-
"integrity": "sha512-
|
|
227
|
+
"version": "7.23.5",
|
|
228
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.23.5.tgz",
|
|
229
|
+
"integrity": "sha512-QELlRWxSpgdwdJzSJn4WAhKC+hvw/AtHbbrIoncKHkhKKR/luAlKkgBDcri1EzWAo8f8VvYVryEHN4tax/V67A==",
|
|
230
230
|
"dev": true,
|
|
231
231
|
"requires": {
|
|
232
232
|
"@babel/helper-annotate-as-pure": "^7.22.5",
|
|
233
|
-
"@babel/helper-environment-visitor": "^7.22.
|
|
234
|
-
"@babel/helper-function-name": "^7.
|
|
235
|
-
"@babel/helper-member-expression-to-functions": "^7.
|
|
233
|
+
"@babel/helper-environment-visitor": "^7.22.20",
|
|
234
|
+
"@babel/helper-function-name": "^7.23.0",
|
|
235
|
+
"@babel/helper-member-expression-to-functions": "^7.23.0",
|
|
236
236
|
"@babel/helper-optimise-call-expression": "^7.22.5",
|
|
237
|
-
"@babel/helper-replace-supers": "^7.22.
|
|
237
|
+
"@babel/helper-replace-supers": "^7.22.20",
|
|
238
238
|
"@babel/helper-skip-transparent-expression-wrappers": "^7.22.5",
|
|
239
239
|
"@babel/helper-split-export-declaration": "^7.22.6",
|
|
240
240
|
"semver": "^6.3.1"
|
|
@@ -403,9 +403,9 @@
|
|
|
403
403
|
"integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A=="
|
|
404
404
|
},
|
|
405
405
|
"@babel/helper-validator-option": {
|
|
406
|
-
"version": "7.
|
|
407
|
-
"resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.
|
|
408
|
-
"integrity": "sha512-
|
|
406
|
+
"version": "7.23.5",
|
|
407
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.23.5.tgz",
|
|
408
|
+
"integrity": "sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw=="
|
|
409
409
|
},
|
|
410
410
|
"@babel/helper-wrap-function": {
|
|
411
411
|
"version": "7.22.20",
|
|
@@ -419,13 +419,13 @@
|
|
|
419
419
|
}
|
|
420
420
|
},
|
|
421
421
|
"@babel/helpers": {
|
|
422
|
-
"version": "7.23.
|
|
423
|
-
"resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.23.
|
|
424
|
-
"integrity": "sha512-
|
|
422
|
+
"version": "7.23.5",
|
|
423
|
+
"resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.23.5.tgz",
|
|
424
|
+
"integrity": "sha512-oO7us8FzTEsG3U6ag9MfdF1iA/7Z6dz+MtFhifZk8C8o453rGJFFWUP1t+ULM9TUIAzC9uxXEiXjOiVMyd7QPg==",
|
|
425
425
|
"requires": {
|
|
426
426
|
"@babel/template": "^7.22.15",
|
|
427
|
-
"@babel/traverse": "^7.23.
|
|
428
|
-
"@babel/types": "^7.23.
|
|
427
|
+
"@babel/traverse": "^7.23.5",
|
|
428
|
+
"@babel/types": "^7.23.5"
|
|
429
429
|
}
|
|
430
430
|
},
|
|
431
431
|
"@babel/highlight": {
|
|
@@ -507,9 +507,9 @@
|
|
|
507
507
|
}
|
|
508
508
|
},
|
|
509
509
|
"@babel/parser": {
|
|
510
|
-
"version": "7.23.
|
|
511
|
-
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.23.
|
|
512
|
-
"integrity": "sha512-
|
|
510
|
+
"version": "7.23.5",
|
|
511
|
+
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.23.5.tgz",
|
|
512
|
+
"integrity": "sha512-hOOqoiNXrmGdFbhgCzu6GiURxUgM27Xwd/aPuu8RfHEZPBzL1Z54okAHAQjXfcQNwvrlkAmAp4SlRTZ45vlthQ=="
|
|
513
513
|
},
|
|
514
514
|
"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": {
|
|
515
515
|
"version": "7.23.3",
|
|
@@ -784,9 +784,9 @@
|
|
|
784
784
|
}
|
|
785
785
|
},
|
|
786
786
|
"@babel/plugin-transform-classes": {
|
|
787
|
-
"version": "7.23.
|
|
788
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.23.
|
|
789
|
-
"integrity": "sha512-
|
|
787
|
+
"version": "7.23.5",
|
|
788
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.23.5.tgz",
|
|
789
|
+
"integrity": "sha512-jvOTR4nicqYC9yzOHIhXG5emiFEOpappSJAl73SDSEDcybD+Puuze8Tnpb9p9qEyYup24tq891gkaygIFvWDqg==",
|
|
790
790
|
"dev": true,
|
|
791
791
|
"requires": {
|
|
792
792
|
"@babel/helper-annotate-as-pure": "^7.22.5",
|
|
@@ -1446,9 +1446,9 @@
|
|
|
1446
1446
|
}
|
|
1447
1447
|
},
|
|
1448
1448
|
"@babel/runtime-corejs3": {
|
|
1449
|
-
"version": "7.23.
|
|
1450
|
-
"resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.23.
|
|
1451
|
-
"integrity": "sha512-
|
|
1449
|
+
"version": "7.23.5",
|
|
1450
|
+
"resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.23.5.tgz",
|
|
1451
|
+
"integrity": "sha512-7+ziVclejQTLYhXl+Oi1f6gTGD1XDCeLa4R472TNGQxb08zbEJ0OdNoh5Piz+57Ltmui6xR88BXR4gS3/Toslw==",
|
|
1452
1452
|
"requires": {
|
|
1453
1453
|
"core-js-pure": "^3.30.2",
|
|
1454
1454
|
"regenerator-runtime": "^0.14.0"
|
|
@@ -1465,26 +1465,26 @@
|
|
|
1465
1465
|
}
|
|
1466
1466
|
},
|
|
1467
1467
|
"@babel/traverse": {
|
|
1468
|
-
"version": "7.23.
|
|
1469
|
-
"resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.23.
|
|
1470
|
-
"integrity": "sha512-
|
|
1468
|
+
"version": "7.23.5",
|
|
1469
|
+
"resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.23.5.tgz",
|
|
1470
|
+
"integrity": "sha512-czx7Xy5a6sapWWRx61m1Ke1Ra4vczu1mCTtJam5zRTBOonfdJ+S/B6HYmGYu3fJtr8GGET3si6IhgWVBhJ/m8w==",
|
|
1471
1471
|
"requires": {
|
|
1472
|
-
"@babel/code-frame": "^7.23.
|
|
1473
|
-
"@babel/generator": "^7.23.
|
|
1472
|
+
"@babel/code-frame": "^7.23.5",
|
|
1473
|
+
"@babel/generator": "^7.23.5",
|
|
1474
1474
|
"@babel/helper-environment-visitor": "^7.22.20",
|
|
1475
1475
|
"@babel/helper-function-name": "^7.23.0",
|
|
1476
1476
|
"@babel/helper-hoist-variables": "^7.22.5",
|
|
1477
1477
|
"@babel/helper-split-export-declaration": "^7.22.6",
|
|
1478
|
-
"@babel/parser": "^7.23.
|
|
1479
|
-
"@babel/types": "^7.23.
|
|
1478
|
+
"@babel/parser": "^7.23.5",
|
|
1479
|
+
"@babel/types": "^7.23.5",
|
|
1480
1480
|
"debug": "^4.1.0",
|
|
1481
1481
|
"globals": "^11.1.0"
|
|
1482
1482
|
}
|
|
1483
1483
|
},
|
|
1484
1484
|
"@babel/types": {
|
|
1485
|
-
"version": "7.23.
|
|
1486
|
-
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.23.
|
|
1487
|
-
"integrity": "sha512-
|
|
1485
|
+
"version": "7.23.5",
|
|
1486
|
+
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.23.5.tgz",
|
|
1487
|
+
"integrity": "sha512-ON5kSOJwVO6xXVRTvOI0eOnWe7VdUcIpsovGo9U/Br4Ie4UVFQTboO2cYnDhAGU6Fp+UxSiT+pMft0SMHfuq6w==",
|
|
1488
1488
|
"requires": {
|
|
1489
1489
|
"@babel/helper-string-parser": "^7.23.4",
|
|
1490
1490
|
"@babel/helper-validator-identifier": "^7.22.20",
|
|
@@ -1811,20 +1811,20 @@
|
|
|
1811
1811
|
},
|
|
1812
1812
|
"dependencies": {
|
|
1813
1813
|
"@babel/core": {
|
|
1814
|
-
"version": "7.23.
|
|
1815
|
-
"resolved": "https://registry.npmjs.org/@babel/core/-/core-7.23.
|
|
1816
|
-
"integrity": "sha512-
|
|
1814
|
+
"version": "7.23.5",
|
|
1815
|
+
"resolved": "https://registry.npmjs.org/@babel/core/-/core-7.23.5.tgz",
|
|
1816
|
+
"integrity": "sha512-Cwc2XjUrG4ilcfOw4wBAK+enbdgwAcAJCfGUItPBKR7Mjw4aEfAFYrLxeRp4jWgtNIKn3n2AlBOfwwafl+42/g==",
|
|
1817
1817
|
"requires": {
|
|
1818
1818
|
"@ampproject/remapping": "^2.2.0",
|
|
1819
|
-
"@babel/code-frame": "^7.
|
|
1820
|
-
"@babel/generator": "^7.23.
|
|
1819
|
+
"@babel/code-frame": "^7.23.5",
|
|
1820
|
+
"@babel/generator": "^7.23.5",
|
|
1821
1821
|
"@babel/helper-compilation-targets": "^7.22.15",
|
|
1822
1822
|
"@babel/helper-module-transforms": "^7.23.3",
|
|
1823
|
-
"@babel/helpers": "^7.23.
|
|
1824
|
-
"@babel/parser": "^7.23.
|
|
1823
|
+
"@babel/helpers": "^7.23.5",
|
|
1824
|
+
"@babel/parser": "^7.23.5",
|
|
1825
1825
|
"@babel/template": "^7.22.15",
|
|
1826
|
-
"@babel/traverse": "^7.23.
|
|
1827
|
-
"@babel/types": "^7.23.
|
|
1826
|
+
"@babel/traverse": "^7.23.5",
|
|
1827
|
+
"@babel/types": "^7.23.5",
|
|
1828
1828
|
"convert-source-map": "^2.0.0",
|
|
1829
1829
|
"debug": "^4.1.0",
|
|
1830
1830
|
"gensync": "^1.0.0-beta.2",
|
|
@@ -1924,20 +1924,20 @@
|
|
|
1924
1924
|
},
|
|
1925
1925
|
"dependencies": {
|
|
1926
1926
|
"@babel/core": {
|
|
1927
|
-
"version": "7.23.
|
|
1928
|
-
"resolved": "https://registry.npmjs.org/@babel/core/-/core-7.23.
|
|
1929
|
-
"integrity": "sha512-
|
|
1927
|
+
"version": "7.23.5",
|
|
1928
|
+
"resolved": "https://registry.npmjs.org/@babel/core/-/core-7.23.5.tgz",
|
|
1929
|
+
"integrity": "sha512-Cwc2XjUrG4ilcfOw4wBAK+enbdgwAcAJCfGUItPBKR7Mjw4aEfAFYrLxeRp4jWgtNIKn3n2AlBOfwwafl+42/g==",
|
|
1930
1930
|
"requires": {
|
|
1931
1931
|
"@ampproject/remapping": "^2.2.0",
|
|
1932
|
-
"@babel/code-frame": "^7.
|
|
1933
|
-
"@babel/generator": "^7.23.
|
|
1932
|
+
"@babel/code-frame": "^7.23.5",
|
|
1933
|
+
"@babel/generator": "^7.23.5",
|
|
1934
1934
|
"@babel/helper-compilation-targets": "^7.22.15",
|
|
1935
1935
|
"@babel/helper-module-transforms": "^7.23.3",
|
|
1936
|
-
"@babel/helpers": "^7.23.
|
|
1937
|
-
"@babel/parser": "^7.23.
|
|
1936
|
+
"@babel/helpers": "^7.23.5",
|
|
1937
|
+
"@babel/parser": "^7.23.5",
|
|
1938
1938
|
"@babel/template": "^7.22.15",
|
|
1939
|
-
"@babel/traverse": "^7.23.
|
|
1940
|
-
"@babel/types": "^7.23.
|
|
1939
|
+
"@babel/traverse": "^7.23.5",
|
|
1940
|
+
"@babel/types": "^7.23.5",
|
|
1941
1941
|
"convert-source-map": "^2.0.0",
|
|
1942
1942
|
"debug": "^4.1.0",
|
|
1943
1943
|
"gensync": "^1.0.0-beta.2",
|
|
@@ -2074,11 +2074,11 @@
|
|
|
2074
2074
|
"integrity": "sha512-Aq58f5HiWdyDlFffbbSjAlv596h/cOnt2DO1w3DOC7OJ5EHs0hd/nycJfiu9RJbT6Yk6F1knnRRXNSpxoIVZ9Q=="
|
|
2075
2075
|
},
|
|
2076
2076
|
"@playwright/test": {
|
|
2077
|
-
"version": "1.40.
|
|
2078
|
-
"resolved": "https://registry.npmjs.org/@playwright/test/-/test-1.40.
|
|
2079
|
-
"integrity": "sha512-
|
|
2077
|
+
"version": "1.40.1",
|
|
2078
|
+
"resolved": "https://registry.npmjs.org/@playwright/test/-/test-1.40.1.tgz",
|
|
2079
|
+
"integrity": "sha512-EaaawMTOeEItCRvfmkI9v6rBkF1svM8wjl/YPRrg2N2Wmp+4qJYkWtJsbew1szfKKDm6fPLy4YAanBhIlf9dWw==",
|
|
2080
2080
|
"requires": {
|
|
2081
|
-
"playwright": "1.40.
|
|
2081
|
+
"playwright": "1.40.1"
|
|
2082
2082
|
}
|
|
2083
2083
|
},
|
|
2084
2084
|
"@sinclair/typebox": {
|
|
@@ -2123,9 +2123,9 @@
|
|
|
2123
2123
|
},
|
|
2124
2124
|
"dependencies": {
|
|
2125
2125
|
"@babel/runtime": {
|
|
2126
|
-
"version": "7.23.
|
|
2127
|
-
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.
|
|
2128
|
-
"integrity": "sha512-
|
|
2126
|
+
"version": "7.23.5",
|
|
2127
|
+
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.5.tgz",
|
|
2128
|
+
"integrity": "sha512-NdUTHcPe4C99WxPub+K9l9tK5/lV4UXIoaHSYgzco9BCyjKAAwzdBI+wWtYqHt7LJdbo74ZjRPJgzVweq1sz0w==",
|
|
2129
2129
|
"requires": {
|
|
2130
2130
|
"regenerator-runtime": "^0.14.0"
|
|
2131
2131
|
}
|
|
@@ -2184,9 +2184,9 @@
|
|
|
2184
2184
|
},
|
|
2185
2185
|
"dependencies": {
|
|
2186
2186
|
"@babel/runtime": {
|
|
2187
|
-
"version": "7.23.
|
|
2188
|
-
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.
|
|
2189
|
-
"integrity": "sha512-
|
|
2187
|
+
"version": "7.23.5",
|
|
2188
|
+
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.5.tgz",
|
|
2189
|
+
"integrity": "sha512-NdUTHcPe4C99WxPub+K9l9tK5/lV4UXIoaHSYgzco9BCyjKAAwzdBI+wWtYqHt7LJdbo74ZjRPJgzVweq1sz0w==",
|
|
2190
2190
|
"requires": {
|
|
2191
2191
|
"regenerator-runtime": "^0.14.0"
|
|
2192
2192
|
}
|
|
@@ -2220,9 +2220,9 @@
|
|
|
2220
2220
|
},
|
|
2221
2221
|
"dependencies": {
|
|
2222
2222
|
"@babel/runtime": {
|
|
2223
|
-
"version": "7.23.
|
|
2224
|
-
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.
|
|
2225
|
-
"integrity": "sha512-
|
|
2223
|
+
"version": "7.23.5",
|
|
2224
|
+
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.5.tgz",
|
|
2225
|
+
"integrity": "sha512-NdUTHcPe4C99WxPub+K9l9tK5/lV4UXIoaHSYgzco9BCyjKAAwzdBI+wWtYqHt7LJdbo74ZjRPJgzVweq1sz0w==",
|
|
2226
2226
|
"requires": {
|
|
2227
2227
|
"regenerator-runtime": "^0.14.0"
|
|
2228
2228
|
}
|
|
@@ -2242,9 +2242,9 @@
|
|
|
2242
2242
|
},
|
|
2243
2243
|
"dependencies": {
|
|
2244
2244
|
"@babel/runtime": {
|
|
2245
|
-
"version": "7.23.
|
|
2246
|
-
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.
|
|
2247
|
-
"integrity": "sha512-
|
|
2245
|
+
"version": "7.23.5",
|
|
2246
|
+
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.5.tgz",
|
|
2247
|
+
"integrity": "sha512-NdUTHcPe4C99WxPub+K9l9tK5/lV4UXIoaHSYgzco9BCyjKAAwzdBI+wWtYqHt7LJdbo74ZjRPJgzVweq1sz0w==",
|
|
2248
2248
|
"requires": {
|
|
2249
2249
|
"regenerator-runtime": "^0.14.0"
|
|
2250
2250
|
}
|
|
@@ -2558,9 +2558,9 @@
|
|
|
2558
2558
|
},
|
|
2559
2559
|
"dependencies": {
|
|
2560
2560
|
"@babel/runtime": {
|
|
2561
|
-
"version": "7.23.
|
|
2562
|
-
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.
|
|
2563
|
-
"integrity": "sha512-
|
|
2561
|
+
"version": "7.23.5",
|
|
2562
|
+
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.5.tgz",
|
|
2563
|
+
"integrity": "sha512-NdUTHcPe4C99WxPub+K9l9tK5/lV4UXIoaHSYgzco9BCyjKAAwzdBI+wWtYqHt7LJdbo74ZjRPJgzVweq1sz0w==",
|
|
2564
2564
|
"requires": {
|
|
2565
2565
|
"regenerator-runtime": "^0.14.0"
|
|
2566
2566
|
}
|
|
@@ -4192,20 +4192,20 @@
|
|
|
4192
4192
|
},
|
|
4193
4193
|
"dependencies": {
|
|
4194
4194
|
"@babel/core": {
|
|
4195
|
-
"version": "7.23.
|
|
4196
|
-
"resolved": "https://registry.npmjs.org/@babel/core/-/core-7.23.
|
|
4197
|
-
"integrity": "sha512-
|
|
4195
|
+
"version": "7.23.5",
|
|
4196
|
+
"resolved": "https://registry.npmjs.org/@babel/core/-/core-7.23.5.tgz",
|
|
4197
|
+
"integrity": "sha512-Cwc2XjUrG4ilcfOw4wBAK+enbdgwAcAJCfGUItPBKR7Mjw4aEfAFYrLxeRp4jWgtNIKn3n2AlBOfwwafl+42/g==",
|
|
4198
4198
|
"requires": {
|
|
4199
4199
|
"@ampproject/remapping": "^2.2.0",
|
|
4200
|
-
"@babel/code-frame": "^7.
|
|
4201
|
-
"@babel/generator": "^7.23.
|
|
4200
|
+
"@babel/code-frame": "^7.23.5",
|
|
4201
|
+
"@babel/generator": "^7.23.5",
|
|
4202
4202
|
"@babel/helper-compilation-targets": "^7.22.15",
|
|
4203
4203
|
"@babel/helper-module-transforms": "^7.23.3",
|
|
4204
|
-
"@babel/helpers": "^7.23.
|
|
4205
|
-
"@babel/parser": "^7.23.
|
|
4204
|
+
"@babel/helpers": "^7.23.5",
|
|
4205
|
+
"@babel/parser": "^7.23.5",
|
|
4206
4206
|
"@babel/template": "^7.22.15",
|
|
4207
|
-
"@babel/traverse": "^7.23.
|
|
4208
|
-
"@babel/types": "^7.23.
|
|
4207
|
+
"@babel/traverse": "^7.23.5",
|
|
4208
|
+
"@babel/types": "^7.23.5",
|
|
4209
4209
|
"convert-source-map": "^2.0.0",
|
|
4210
4210
|
"debug": "^4.1.0",
|
|
4211
4211
|
"gensync": "^1.0.0-beta.2",
|
|
@@ -4377,20 +4377,20 @@
|
|
|
4377
4377
|
},
|
|
4378
4378
|
"dependencies": {
|
|
4379
4379
|
"@babel/core": {
|
|
4380
|
-
"version": "7.23.
|
|
4381
|
-
"resolved": "https://registry.npmjs.org/@babel/core/-/core-7.23.
|
|
4382
|
-
"integrity": "sha512-
|
|
4380
|
+
"version": "7.23.5",
|
|
4381
|
+
"resolved": "https://registry.npmjs.org/@babel/core/-/core-7.23.5.tgz",
|
|
4382
|
+
"integrity": "sha512-Cwc2XjUrG4ilcfOw4wBAK+enbdgwAcAJCfGUItPBKR7Mjw4aEfAFYrLxeRp4jWgtNIKn3n2AlBOfwwafl+42/g==",
|
|
4383
4383
|
"requires": {
|
|
4384
4384
|
"@ampproject/remapping": "^2.2.0",
|
|
4385
|
-
"@babel/code-frame": "^7.
|
|
4386
|
-
"@babel/generator": "^7.23.
|
|
4385
|
+
"@babel/code-frame": "^7.23.5",
|
|
4386
|
+
"@babel/generator": "^7.23.5",
|
|
4387
4387
|
"@babel/helper-compilation-targets": "^7.22.15",
|
|
4388
4388
|
"@babel/helper-module-transforms": "^7.23.3",
|
|
4389
|
-
"@babel/helpers": "^7.23.
|
|
4390
|
-
"@babel/parser": "^7.23.
|
|
4389
|
+
"@babel/helpers": "^7.23.5",
|
|
4390
|
+
"@babel/parser": "^7.23.5",
|
|
4391
4391
|
"@babel/template": "^7.22.15",
|
|
4392
|
-
"@babel/traverse": "^7.23.
|
|
4393
|
-
"@babel/types": "^7.23.
|
|
4392
|
+
"@babel/traverse": "^7.23.5",
|
|
4393
|
+
"@babel/types": "^7.23.5",
|
|
4394
4394
|
"convert-source-map": "^2.0.0",
|
|
4395
4395
|
"debug": "^4.1.0",
|
|
4396
4396
|
"gensync": "^1.0.0-beta.2",
|
|
@@ -4687,20 +4687,20 @@
|
|
|
4687
4687
|
},
|
|
4688
4688
|
"dependencies": {
|
|
4689
4689
|
"@babel/core": {
|
|
4690
|
-
"version": "7.23.
|
|
4691
|
-
"resolved": "https://registry.npmjs.org/@babel/core/-/core-7.23.
|
|
4692
|
-
"integrity": "sha512-
|
|
4690
|
+
"version": "7.23.5",
|
|
4691
|
+
"resolved": "https://registry.npmjs.org/@babel/core/-/core-7.23.5.tgz",
|
|
4692
|
+
"integrity": "sha512-Cwc2XjUrG4ilcfOw4wBAK+enbdgwAcAJCfGUItPBKR7Mjw4aEfAFYrLxeRp4jWgtNIKn3n2AlBOfwwafl+42/g==",
|
|
4693
4693
|
"requires": {
|
|
4694
4694
|
"@ampproject/remapping": "^2.2.0",
|
|
4695
|
-
"@babel/code-frame": "^7.
|
|
4696
|
-
"@babel/generator": "^7.23.
|
|
4695
|
+
"@babel/code-frame": "^7.23.5",
|
|
4696
|
+
"@babel/generator": "^7.23.5",
|
|
4697
4697
|
"@babel/helper-compilation-targets": "^7.22.15",
|
|
4698
4698
|
"@babel/helper-module-transforms": "^7.23.3",
|
|
4699
|
-
"@babel/helpers": "^7.23.
|
|
4700
|
-
"@babel/parser": "^7.23.
|
|
4699
|
+
"@babel/helpers": "^7.23.5",
|
|
4700
|
+
"@babel/parser": "^7.23.5",
|
|
4701
4701
|
"@babel/template": "^7.22.15",
|
|
4702
|
-
"@babel/traverse": "^7.23.
|
|
4703
|
-
"@babel/types": "^7.23.
|
|
4702
|
+
"@babel/traverse": "^7.23.5",
|
|
4703
|
+
"@babel/types": "^7.23.5",
|
|
4704
4704
|
"convert-source-map": "^2.0.0",
|
|
4705
4705
|
"debug": "^4.1.0",
|
|
4706
4706
|
"gensync": "^1.0.0-beta.2",
|
|
@@ -5387,18 +5387,18 @@
|
|
|
5387
5387
|
}
|
|
5388
5388
|
},
|
|
5389
5389
|
"playwright": {
|
|
5390
|
-
"version": "1.40.
|
|
5391
|
-
"resolved": "https://registry.npmjs.org/playwright/-/playwright-1.40.
|
|
5392
|
-
"integrity": "sha512-
|
|
5390
|
+
"version": "1.40.1",
|
|
5391
|
+
"resolved": "https://registry.npmjs.org/playwright/-/playwright-1.40.1.tgz",
|
|
5392
|
+
"integrity": "sha512-2eHI7IioIpQ0bS1Ovg/HszsN/XKNwEG1kbzSDDmADpclKc7CyqkHw7Mg2JCz/bbCxg25QUPcjksoMW7JcIFQmw==",
|
|
5393
5393
|
"requires": {
|
|
5394
5394
|
"fsevents": "2.3.2",
|
|
5395
|
-
"playwright-core": "1.40.
|
|
5395
|
+
"playwright-core": "1.40.1"
|
|
5396
5396
|
}
|
|
5397
5397
|
},
|
|
5398
5398
|
"playwright-core": {
|
|
5399
|
-
"version": "1.40.
|
|
5400
|
-
"resolved": "https://registry.npmjs.org/playwright-core/-/playwright-core-1.40.
|
|
5401
|
-
"integrity": "sha512
|
|
5399
|
+
"version": "1.40.1",
|
|
5400
|
+
"resolved": "https://registry.npmjs.org/playwright-core/-/playwright-core-1.40.1.tgz",
|
|
5401
|
+
"integrity": "sha512-+hkOycxPiV534c4HhpfX6yrlawqVUzITRKwHAmYfmsVreltEl6fAZJ3DPfLMOODw0H3s1Itd6MDCWmP1fl/QvQ=="
|
|
5402
5402
|
},
|
|
5403
5403
|
"pretty-format": {
|
|
5404
5404
|
"version": "29.7.0",
|
|
@@ -5470,9 +5470,9 @@
|
|
|
5470
5470
|
},
|
|
5471
5471
|
"dependencies": {
|
|
5472
5472
|
"@babel/runtime": {
|
|
5473
|
-
"version": "7.23.
|
|
5474
|
-
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.
|
|
5475
|
-
"integrity": "sha512-
|
|
5473
|
+
"version": "7.23.5",
|
|
5474
|
+
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.5.tgz",
|
|
5475
|
+
"integrity": "sha512-NdUTHcPe4C99WxPub+K9l9tK5/lV4UXIoaHSYgzco9BCyjKAAwzdBI+wWtYqHt7LJdbo74ZjRPJgzVweq1sz0w==",
|
|
5476
5476
|
"requires": {
|
|
5477
5477
|
"regenerator-runtime": "^0.14.0"
|
|
5478
5478
|
}
|
|
@@ -6456,9 +6456,9 @@
|
|
|
6456
6456
|
},
|
|
6457
6457
|
"dependencies": {
|
|
6458
6458
|
"@babel/runtime": {
|
|
6459
|
-
"version": "7.23.
|
|
6460
|
-
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.
|
|
6461
|
-
"integrity": "sha512-
|
|
6459
|
+
"version": "7.23.5",
|
|
6460
|
+
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.5.tgz",
|
|
6461
|
+
"integrity": "sha512-NdUTHcPe4C99WxPub+K9l9tK5/lV4UXIoaHSYgzco9BCyjKAAwzdBI+wWtYqHt7LJdbo74ZjRPJgzVweq1sz0w==",
|
|
6462
6462
|
"requires": {
|
|
6463
6463
|
"regenerator-runtime": "^0.14.0"
|
|
6464
6464
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zohodesk/testinglibrary",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.5",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "./build/index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -22,8 +22,8 @@
|
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"@babel/preset-react": "7.22.5",
|
|
24
24
|
"@cucumber/cucumber": "9.2.0",
|
|
25
|
-
"@playwright/test": "1.40.
|
|
26
|
-
"playwright": "1.40.
|
|
25
|
+
"@playwright/test": "1.40.1",
|
|
26
|
+
"playwright": "1.40.1",
|
|
27
27
|
"@testing-library/jest-dom": "5.11.9",
|
|
28
28
|
"@testing-library/react": "11.2.7",
|
|
29
29
|
"@testing-library/react-hooks": "7.0.2",
|
|
@@ -52,4 +52,4 @@
|
|
|
52
52
|
"@babel/runtime": "7.22.15",
|
|
53
53
|
"commander": "^11.0.0"
|
|
54
54
|
}
|
|
55
|
-
}
|
|
55
|
+
}
|