qase-javascript-commons 2.2.13 → 2.2.15
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
CHANGED
package/dist/models/test-step.js
CHANGED
|
@@ -493,6 +493,12 @@ class TestOpsReporter extends abstract_reporter_1.AbstractReporter {
|
|
|
493
493
|
resultStep.data.action = step.data.action;
|
|
494
494
|
}
|
|
495
495
|
}
|
|
496
|
+
if ('expected_result' in step.data && resultStep.data != undefined && step.data.expected_result != null) {
|
|
497
|
+
resultStep.data.expected_result = step.data.expected_result;
|
|
498
|
+
}
|
|
499
|
+
if ('data' in step.data && resultStep.data != undefined && step.data.data != null) {
|
|
500
|
+
resultStep.data.input_data = step.data.data;
|
|
501
|
+
}
|
|
496
502
|
}
|
|
497
503
|
if (step.step_type === models_1.StepType.GHERKIN) {
|
|
498
504
|
if ('keyword' in step.data && resultStep.data != undefined) {
|
package/dist/steps/step.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "qase-javascript-commons",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.15",
|
|
4
4
|
"description": "Qase JS Reporters",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"@types/mime-types": "^2.1.4",
|
|
47
47
|
"@types/node": "^20.12.5",
|
|
48
48
|
"@types/uuid": "^9.0.1",
|
|
49
|
-
"axios": "^
|
|
49
|
+
"axios": "^1.8.2",
|
|
50
50
|
"jest": "^29.5.0",
|
|
51
51
|
"ts-jest": "^29.1.0"
|
|
52
52
|
}
|