@zohodesk/testinglibrary 0.1.0 → 0.1.1-exp.2
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/Changelog.md +15 -0
- package/build/bdd-framework/cli/commands/env.js +1 -1
- package/build/bdd-framework/cli/commands/test.js +19 -19
- package/build/bdd-framework/config/env.js +3 -3
- package/build/bdd-framework/cucumber/loadFeatures.js +2 -2
- package/build/bdd-framework/cucumber/loadSteps.js +2 -2
- package/build/bdd-framework/gen/index.js +14 -11
- package/build/bdd-framework/gen/testFile.js +12 -12
- package/build/bdd-framework/gen/testPoms.js +2 -2
- package/build/bdd-framework/playwright/loadConfig.js +2 -2
- package/build/bdd-framework/playwright/testTypeImpl.js +17 -1
- package/build/bdd-framework/playwright/utils.js +4 -1
- package/build/bdd-framework/run/bddWorld.js +3 -2
- package/build/bdd-framework/snippets/index.js +9 -5
- package/build/bdd-framework/stepDefinitions/createBdd.js +2 -2
- package/build/bdd-framework/stepDefinitions/decorators/poms.js +17 -3
- package/build/bdd-framework/stepDefinitions/defineStep.js +2 -2
- package/build/bdd-framework/utils/exit.js +52 -0
- package/build/bdd-framework/utils/index.js +0 -6
- package/build/index.js +2 -13
- package/build/lib/post-install.js +2 -2
- package/npm-shrinkwrap.json +531 -417
- package/package.json +21 -21
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zohodesk/testinglibrary",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1-exp.2",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "./build/index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -20,19 +20,19 @@
|
|
|
20
20
|
"author": "",
|
|
21
21
|
"license": "ISC",
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@babel/preset-react": "
|
|
24
|
-
"@cucumber/cucumber": "
|
|
25
|
-
"@playwright/test": "
|
|
26
|
-
"@testing-library/jest-dom": "
|
|
27
|
-
"@testing-library/react": "
|
|
28
|
-
"@testing-library/react-hooks": "
|
|
29
|
-
"babel-jest": "
|
|
30
|
-
"babel-plugin-transform-dynamic-import": "
|
|
31
|
-
"commander": "
|
|
32
|
-
"fast-glob": "
|
|
33
|
-
"jest": "
|
|
34
|
-
"jest-environment-jsdom": "
|
|
35
|
-
"msw": "
|
|
23
|
+
"@babel/preset-react": "7.22.5",
|
|
24
|
+
"@cucumber/cucumber": "9.2.0",
|
|
25
|
+
"@playwright/test": "1.39.0",
|
|
26
|
+
"@testing-library/jest-dom": "5.11.9",
|
|
27
|
+
"@testing-library/react": "11.2.7",
|
|
28
|
+
"@testing-library/react-hooks": "7.0.2",
|
|
29
|
+
"babel-jest": "29.6.2",
|
|
30
|
+
"babel-plugin-transform-dynamic-import": "2.1.0",
|
|
31
|
+
"commander": "11.0.0",
|
|
32
|
+
"fast-glob": "3.3.1",
|
|
33
|
+
"jest": "29.6.2",
|
|
34
|
+
"jest-environment-jsdom": "29.6.2",
|
|
35
|
+
"msw": "1.2.3"
|
|
36
36
|
},
|
|
37
37
|
"bin": {
|
|
38
38
|
"ZDTestingFramework": "./bin/cli.js"
|
|
@@ -43,12 +43,12 @@
|
|
|
43
43
|
"eslint": "*"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@babel/cli": "
|
|
47
|
-
"@babel/core": "
|
|
48
|
-
"@babel/node": "
|
|
49
|
-
"@babel/plugin-transform-runtime": "
|
|
50
|
-
"@babel/polyfill": "
|
|
51
|
-
"@babel/preset-env": "
|
|
52
|
-
"@babel/runtime": "
|
|
46
|
+
"@babel/cli": "7.22.15",
|
|
47
|
+
"@babel/core": "7.22.17",
|
|
48
|
+
"@babel/node": "7.22.15",
|
|
49
|
+
"@babel/plugin-transform-runtime": "7.22.15",
|
|
50
|
+
"@babel/polyfill": "7.12.1",
|
|
51
|
+
"@babel/preset-env": "7.22.15",
|
|
52
|
+
"@babel/runtime": "7.22.15"
|
|
53
53
|
}
|
|
54
54
|
}
|