@dev-blinq/cucumber-js 1.0.47 → 1.0.48-stage
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/bin/download-install.js +51 -10
- package/lib/api/gherkin.js +6 -1
- package/lib/api/gherkin.js.map +1 -1
- package/lib/configuration/axios_client.d.ts +1 -0
- package/lib/configuration/axios_client.js +40 -0
- package/lib/configuration/axios_client.js.map +1 -0
- package/lib/formatter/api.d.ts +2 -0
- package/lib/formatter/api.js +53 -0
- package/lib/formatter/api.js.map +1 -0
- package/lib/formatter/bvt_analysis_formatter.d.ts +2 -1
- package/lib/formatter/bvt_analysis_formatter.js +104 -36
- package/lib/formatter/bvt_analysis_formatter.js.map +1 -1
- package/lib/formatter/feature_data_format.d.ts +2 -2
- package/lib/formatter/feature_data_format.js +52 -7
- package/lib/formatter/feature_data_format.js.map +1 -1
- package/lib/formatter/helpers/report_generator.d.ts +32 -1
- package/lib/formatter/helpers/report_generator.js +142 -11
- package/lib/formatter/helpers/report_generator.js.map +1 -1
- package/lib/formatter/helpers/upload_serivce.d.ts +6 -0
- package/lib/formatter/helpers/upload_serivce.js +167 -13
- package/lib/formatter/helpers/upload_serivce.js.map +1 -1
- package/lib/formatter/helpers/uploader.d.ts +2 -1
- package/lib/formatter/helpers/uploader.js +105 -11
- package/lib/formatter/helpers/uploader.js.map +1 -1
- package/lib/version.d.ts +1 -1
- package/lib/version.js +1 -1
- package/lib/version.js.map +1 -1
- package/package.json +5 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dev-blinq/cucumber-js",
|
|
3
|
-
"description": "
|
|
3
|
+
"description": "",
|
|
4
4
|
"keywords": [
|
|
5
5
|
"testing",
|
|
6
6
|
"bdd",
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"gherkin",
|
|
9
9
|
"tests"
|
|
10
10
|
],
|
|
11
|
-
"version": "1.0.
|
|
11
|
+
"version": "1.0.48-stage",
|
|
12
12
|
"homepage": "https://github.com/blinq-io/cucumber-js",
|
|
13
13
|
"author": "blinq.io",
|
|
14
14
|
"contributors": [
|
|
@@ -60,13 +60,13 @@
|
|
|
60
60
|
"@cucumber/messages": "22.0.0",
|
|
61
61
|
"@cucumber/tag-expressions": "5.0.1",
|
|
62
62
|
"@faker-js/faker": "^8.0.2",
|
|
63
|
+
"@types/tunnel": "^0.0.7",
|
|
63
64
|
"assertion-error-formatter": "^3.0.0",
|
|
64
65
|
"axios": "^1.6.2",
|
|
65
66
|
"capital-case": "^1.0.4",
|
|
66
67
|
"chalk": "^4.1.2",
|
|
67
68
|
"cli-table3": "0.6.3",
|
|
68
69
|
"commander": "^10.0.0",
|
|
69
|
-
"console-table-printer": "^2.12.0",
|
|
70
70
|
"debug": "^4.3.4",
|
|
71
71
|
"error-stack-parser": "^2.1.4",
|
|
72
72
|
"figures": "^3.2.0",
|
|
@@ -75,6 +75,7 @@
|
|
|
75
75
|
"indent-string": "^4.0.0",
|
|
76
76
|
"is-installed-globally": "^0.4.0",
|
|
77
77
|
"is-stream": "^2.0.0",
|
|
78
|
+
"json5": "^2.2.3",
|
|
78
79
|
"jszip": "^3.10.1",
|
|
79
80
|
"knuth-shuffle-seeded": "^1.0.6",
|
|
80
81
|
"lodash.merge": "^4.6.2",
|
|
@@ -90,6 +91,7 @@
|
|
|
90
91
|
"supports-color": "^8.1.1",
|
|
91
92
|
"tmp": "^0.2.1",
|
|
92
93
|
"tmp-promise": "^3.0.3",
|
|
94
|
+
"tunnel": "^0.0.6",
|
|
93
95
|
"util-arity": "^1.1.0",
|
|
94
96
|
"verror": "^1.10.0",
|
|
95
97
|
"xmlbuilder": "^15.1.1",
|